data property

T? get data

Implementation

T? get data => switch (this) {
  SuccessStatus(:final data) => data,
  _ => null,
};