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