PhoneVerificationStartResponse.fromJson constructor

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

Implementation

factory PhoneVerificationStartResponse.fromJson(Map<String, dynamic> json) {
  return PhoneVerificationStartResponse(
    status: json['status'],
  );
}