description property

String get description

Implementation

String get description =>
    _description ??
    switch (_type) {
      _Type.normal => 'Unknown',
      _Type.private => 'Private',
      _Type.reserved => 'Reserved',
    };