inner property
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;
}
The data contained inside this enum object. You will need to cast it to the correct type based on the value of tag
Object? get inner {
if (_inner == null) {
destructureSelf();
}
return _inner;
}