state property

S state

Implementation

S get state {
  final state = _state;

  if (state != null) {
    return state;
  }

  throw ArgumentError.notNull('state');
}