copyWith method

Implementation

WebApiModulesAccountServicesAccountForgotPasswordRequest copyWith({
  String? email,
}) {
  return WebApiModulesAccountServicesAccountForgotPasswordRequest(
    email: email ?? this.email,
  );
}