data property

T? get data

Implementation

T? get data {
  if (!_isAlreadyCallOk) {
    sysLog.w('call .data before check .ok, for ensure result is ok and able to use data'
        ' --> call .ok before get data');
  }
  return _data;
}