fromJson static method
Inherited by: AuthenticationCodeTypeCall AuthenticationCodeTypeFirebaseAndroid AuthenticationCodeTypeFirebaseIos AuthenticationCodeTypeFlashCall AuthenticationCodeTypeFragment AuthenticationCodeTypeMissedCall AuthenticationCodeTypeSms AuthenticationCodeTypeSmsPhrase AuthenticationCodeTypeSmsWord AuthenticationCodeTypeTelegramMessage
Implementation
static AuthenticationCodeTypeMissedCall? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return AuthenticationCodeTypeMissedCall(
phoneNumberPrefix: (json['phone_number_prefix'] as String?) ?? '',
length: (json['length'] as int?) ?? 0,
);
}