copyWith method

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

Implementation

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