isUtc property

  1. @override
bool isUtc
override

True if this TZDateTime is set to UTC time.

final dDay = TZDateTime.utc(1944, 6, 6);
assert(dDay.isUtc);

Implementation

@override
bool get isUtc => _isUtc(location);