RestrictedExportConfig.fromJson constructor

RestrictedExportConfig.fromJson(
  1. Map json_
)

Implementation

RestrictedExportConfig.fromJson(core.Map json_)
    : this(
        enabled: json_.containsKey('enabled')
            ? json_['enabled'] as core.bool
            : null,
        restrictDirectTableAccess:
            json_.containsKey('restrictDirectTableAccess')
                ? json_['restrictDirectTableAccess'] as core.bool
                : null,
        restrictQueryResult: json_.containsKey('restrictQueryResult')
            ? json_['restrictQueryResult'] as core.bool
            : null,
      );