name property

String name

Implementation

String get name {
  switch (this) {
    case BodyExceptionType.none:
      return "None exception ";
    case BodyExceptionType.isNull:
      return "Item is null";
    case BodyExceptionType.isNotType:
      return "Item is not correct type";
    case BodyExceptionType.undefined:
      return "Item had an unkwnown error";
  }
}