AuthenticationCodeTypeFirebaseAndroid.fromJson constructor

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

Parse from a json

Implementation

factory AuthenticationCodeTypeFirebaseAndroid.fromJson(
        Map<String, dynamic> json) =>
    AuthenticationCodeTypeFirebaseAndroid(
      nonce: json['nonce'],
      length: json['length'],
    );