SQLResponseOf<T extends Object?>.error constructor
Implementation
factory SQLResponseOf.error({string? message, string dataSetType = "table", string? sql}) => SQLResponseOf<T>(hasData: false, sql: sql ?? "", status: "error", hasError: true, message: message ?? "error", dataSetType: dataSetType, data: null);