withTimeZone method
TZDateTime
withTimeZone(
- Location? location
Implementation
TZDateTime withTimeZone(Location? location) {
if (this is TZDateTime) return (this as TZDateTime);
return TZDateTime.from(this, location ?? sunnyLocalization.userLocation!);
}