isLocal property
True if this TZDateTime is set to Local time.
final dDay = TZDateTime.local(1944, 6, 6);
assert(dDay.isLocal);
Implementation
bool get isLocal => identical(location, local);
True if this TZDateTime is set to Local time.
final dDay = TZDateTime.local(1944, 6, 6);
assert(dDay.isLocal);
bool get isLocal => identical(location, local);