RowLevelSecurityStatistics.fromJson constructor

RowLevelSecurityStatistics.fromJson(
  1. Map json_
)

Implementation

RowLevelSecurityStatistics.fromJson(core.Map json_)
    : this(
        rowLevelSecurityApplied: json_.containsKey('rowLevelSecurityApplied')
            ? json_['rowLevelSecurityApplied'] as core.bool
            : null,
      );