IndexItemOptions.fromJson constructor

IndexItemOptions.fromJson(
  1. Map json_
)

Implementation

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