GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.fromJson constructor

GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.fromJson(core.Map json_)
    : this(
        receipt: json_.containsKey('receipt')
            ? json_['receipt'] as core.String
            : null,
        suggestedTimeout: json_.containsKey('suggestedTimeout')
            ? json_['suggestedTimeout'] as core.String
            : null,
      );