isUtc property

bool? isUtc

isUtc

Implementation

bool? get isUtc {
  if (_datetime == null) return null;
  return _datetime!.isUtc;
}