toString method

  1. @override
String toString()
override

A string representation of this object.

Some classes have a default textual representation, often paired with a static parse function (like int.parse). These classes will provide the textual representation as their string representation.

Other classes have no meaningful textual representation that a program will care about. Such classes will typically override toString to provide useful information when inspecting the object, mainly for debugging or logging.

Implementation

@override
String toString() {
  switch (_value) {
    case 0:
      return 'BORDERLESS';
    case 2:
      return 'CLOSABLE';
    case 64:
      return 'DOC_MODAL_WINDOW';
    case 16384:
      return 'FULLSCREEN';
    case 32768:
      return 'FULL_SIZE_CONTENT_VIEW';
    case 8192:
      return 'HUD_WINDOW';
    case 4:
      return 'MINIATURIZABLE';
    case 128:
      return 'NONACTIVATING_PANEL';
    case 8:
      return 'RESIZABLE';
    case 1:
      return 'TITLED';
    case 16:
      return 'UTILITY_WINDOW';
  }
  return _value.toString();
}