copyWith method
AuthenticationCodeInfo
copyWith({
- String? phoneNumber,
- AuthenticationCodeType? type,
- AuthenticationCodeType? nextType,
- int? timeout,
Implementation
AuthenticationCodeInfo copyWith({
String? phoneNumber,
AuthenticationCodeType? type,
AuthenticationCodeType? nextType,
int? timeout,
}) => AuthenticationCodeInfo(
phoneNumber: phoneNumber ?? this.phoneNumber,
type: type ?? this.type,
nextType: nextType ?? this.nextType,
timeout: timeout ?? this.timeout,
);