copyWith method
Implementation
TemporaryPasswordState copyWith({bool? hasPassword, int? validFor}) =>
TemporaryPasswordState(
hasPassword: hasPassword ?? this.hasPassword,
validFor: validFor ?? this.validFor,
);
TemporaryPasswordState copyWith({bool? hasPassword, int? validFor}) =>
TemporaryPasswordState(
hasPassword: hasPassword ?? this.hasPassword,
validFor: validFor ?? this.validFor,
);