copyWith method

Implementation

WebApiModulesAccountServicesAccountForgotPasswordResponse copyWith({
  String? status,
  String? message,
}) {
  return WebApiModulesAccountServicesAccountForgotPasswordResponse(
    status: status ?? this.status,
    message: message ?? this.message,
  );
}