NUIErrorMapping constructor

NUIErrorMapping({
  1. String? code,
  2. String? module,
  3. String? title,
  4. String? message,
  5. String? actionMessage,
  6. String? actionCode,
  7. String? actionType,
  8. String? extra,
})

Implementation

NUIErrorMapping({this.code, this.module, this.title, this.message, this.actionMessage, this.actionCode, this.actionType, this.extra}){
  this.id = code! + "-" + module!;
}