copyWith method

  1. @override
AuthenticationCodeTypeFragment copyWith({
  1. String? url,
  2. int? length,
})
override

Implementation

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