copyWith method

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

Implementation

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