toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final expiresIn = this.expiresIn;
  final idToken = this.idToken;
  final isNewUser = this.isNewUser;
  final localId = this.localId;
  final phoneNumber = this.phoneNumber;
  final refreshToken = this.refreshToken;
  final temporaryProof = this.temporaryProof;
  final temporaryProofExpiresIn = this.temporaryProofExpiresIn;
  final verificationProof = this.verificationProof;
  final verificationProofExpiresIn = this.verificationProofExpiresIn;
  return {
    'expiresIn': ?expiresIn,
    'idToken': ?idToken,
    'isNewUser': ?isNewUser,
    'localId': ?localId,
    'phoneNumber': ?phoneNumber,
    'refreshToken': ?refreshToken,
    'temporaryProof': ?temporaryProof,
    'temporaryProofExpiresIn': ?temporaryProofExpiresIn,
    'verificationProof': ?verificationProof,
    'verificationProofExpiresIn': ?verificationProofExpiresIn,
  };
}