IdentitytoolkitRelyingpartyGetAccountInfoRequest.fromJson constructor

IdentitytoolkitRelyingpartyGetAccountInfoRequest.fromJson(
  1. Map json_
)

Implementation

IdentitytoolkitRelyingpartyGetAccountInfoRequest.fromJson(core.Map json_)
    : this(
        delegatedProjectNumber:
            json_['delegatedProjectNumber'] as core.String?,
        email: (json_['email'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        idToken: json_['idToken'] as core.String?,
        localId: (json_['localId'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        phoneNumber: (json_['phoneNumber'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );