ErrorSqlResult constructor

ErrorSqlResult(
  1. String className,
  2. String methodName,
  3. String? sqlCommand,
  4. List<String> errorMessage, {
  5. String? errorCode,
})

Implementation

ErrorSqlResult(String className, String methodName, String? sqlCommand,
    this.errorMessage,
    {this.errorCode})
    : super(false, className, methodName, sqlCommand: sqlCommand);