data property

T data

Implementation

T get data => _cachedData!;
void data=(T value)

Implementation

set data(T value) {
  _cachedData = value;
}