H5PLABEL property

String get H5PLABEL

Implementation

String get H5PLABEL {
  switch (this) {
    case H5PLoadStatus.downloading:
      return "Downloading...";
    case H5PLoadStatus.extracting:
      return "Extracting...";
    case H5PLoadStatus.ready:
      return "Ready!";
    case H5PLoadStatus.error:
      return "Error";
    default:
      return "Idle";
  }
}