GoogleCloudIdentitytoolkitV2StartMfaSignInResponse.fromJson constructor

GoogleCloudIdentitytoolkitV2StartMfaSignInResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitV2StartMfaSignInResponse.fromJson(core.Map json_)
  : this(
      phoneResponseInfo: json_.containsKey('phoneResponseInfo')
          ? GoogleCloudIdentitytoolkitV2StartMfaPhoneResponseInfo.fromJson(
              json_['phoneResponseInfo']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );