copyWith method

EmailAddressResetStateAvailable copyWith({
  1. int? waitPeriod,
})

Implementation

EmailAddressResetStateAvailable copyWith({int? waitPeriod}) =>
    EmailAddressResetStateAvailable(
      waitPeriod: waitPeriod ?? this.waitPeriod,
    );