RestrictedExportConfig.fromJson constructor

RestrictedExportConfig.fromJson(
  1. Map json_
)

Implementation

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