AuthenticationCodeTypeFirebaseIos.fromJson constructor

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

Parse from a json

Implementation

factory AuthenticationCodeTypeFirebaseIos.fromJson(
        Map<String, dynamic> json) =>
    AuthenticationCodeTypeFirebaseIos(
      receipt: json['receipt'],
      pushTimeout: json['push_timeout'],
      length: json['length'],
    );