EmailAuthCredential.fromJson constructor

EmailAuthCredential.fromJson(
  1. Map<String, dynamic> json
)

Implementation

EmailAuthCredential.fromJson(Map<String, dynamic> json)
    : this._(
          email: json['email'],
          password: json['secret'],
          emailLink: json['emailLink']);