inner property

Object? get inner

The data contained inside this enum object. You will need to cast it to the correct type based on the value of tag

Implementation

Object? get inner {
  if (_inner == null) {
    destructureSelf();
  }
  return _inner;
}