copyWith method

CreateTemporaryPassword copyWith({
  1. String? password,
  2. int? validFor,
})

Implementation

CreateTemporaryPassword copyWith({
  String? password,
  int? validFor,
}) => CreateTemporaryPassword(
  password: password ?? this.password,
  validFor: validFor ?? this.validFor,
);