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