data property

T? get data

Implementation

T? get data {
  if (hasData) {
    return value!;
  }
  return null;
}