copyWith method

  1. @override
AuthenticationCodeTypeCall copyWith({
  1. int? length,
})
override

Implementation

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