ok property

bool get ok

Implementation

bool get ok {
  if (_source['ok'] == null) return false;
  if (_source['ok'] is String) return _source['ok'] == 'true';
  if (_source['ok'] is bool) return _source['ok'];
  return false;
}