GoogleAuthenticationSettings.fromJson constructor

GoogleAuthenticationSettings.fromJson(
  1. Map json_
)

Implementation

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