copyWith method
Implementation
@override
AuthenticationCodeTypeMissedCall copyWith({
String? phoneNumberPrefix,
int? length,
}) => AuthenticationCodeTypeMissedCall(
phoneNumberPrefix: phoneNumberPrefix ?? this.phoneNumberPrefix,
length: length ?? this.length,
);