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