isLocal property
bool
get
isLocal
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);