copyWith method

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

Implementation

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