copyWith method
Implementation
AuthenticationCodeTypeFirebaseIos copyWith({
String? receipt,
int? pushTimeout,
int? length,
}) => AuthenticationCodeTypeFirebaseIos(
receipt: receipt ?? this.receipt,
pushTimeout: pushTimeout ?? this.pushTimeout,
length: length ?? this.length,
);