AuthenticationCodeTypeMissedCall.fromJson constructor

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

Parse from a json

Implementation

factory AuthenticationCodeTypeMissedCall.fromJson(Map<String, dynamic> json) => AuthenticationCodeTypeMissedCall(
  phoneNumberPrefix: json['phone_number_prefix'],
  length: json['length'],
);