copyWith method

AuthenticationCodeTypeSmsWord copyWith({
  1. String? firstLetter,
})

Implementation

AuthenticationCodeTypeSmsWord copyWith({String? firstLetter}) =>
    AuthenticationCodeTypeSmsWord(
      firstLetter: firstLetter ?? this.firstLetter,
    );