copyWith method

Implementation

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