GoogleAuthenticationSettings.fromJson constructor

GoogleAuthenticationSettings.fromJson(
  1. Map json_
)

Implementation

GoogleAuthenticationSettings.fromJson(core.Map json_)
    : this(
        dedicatedDevicesAllowed: json_.containsKey('dedicatedDevicesAllowed')
            ? json_['dedicatedDevicesAllowed'] as core.String
            : null,
        googleAuthenticationRequired:
            json_.containsKey('googleAuthenticationRequired')
                ? json_['googleAuthenticationRequired'] as core.String
                : null,
      );