indonesian_timezone 1.0.0 copy "indonesian_timezone: ^1.0.0" to clipboard
indonesian_timezone: ^1.0.0 copied to clipboard

To make it easier to convert time into the form of Indonesian time zones (WIB, WITA, & WIT)

Indonesian Timezone #

Simple package to cange and format Datetime or parsing String to Datetime to Indonesian Timezone (WIB, WITA, WIT)

  • change Datetime to Indonesian Timezone & format it with easy
DateTime dateTime = DateTime.now();

// IdTimezone idTimeZone = IdTimezone(date: dateTime, utc: UTC.zero);
IdTimezone idTimeZone = IdTimezone(date: dateTime); // default read UTC±0

// change to Indonesian Time Zone
DateTime? inWIB = idTimeZone.toWIB();

// format to string with custom format
String? inWIBStr = inWIB?.format("dd MMM yyyy HH:mm");

  • parse from string
String dateTimeStr = "2022-01-01 10:00:00";
DateTime? idTz = IdTimezone().parse(dateTimeStr).toWIB();
String? formated = idTz?.format("dd MMM yyyy HH:mm");
print(formated); // 01 Jan 2023 13:00

  • Function & methods
Funtion Param Return Description
.toWIB() - DateTime change to WIB Timezone
.toWITA() - DateTime change to WITA Timezone
.toWIT() - DateTime change to WIT Timezone
.format(String) String String change IdTimezone/DateTime to String with custom format
.parse(String) String datetime IdTimezone parse String to IdTimezone class
.setUTC(UTC) UTC enum IdTimezone set Timezone in UTC format
.fromWIB(DateTime) DateTime in WIB/UTC+7 IdTimezone parse DateTime WIB/UTC+7 to IdTimezone class
.fromWITA(Datetime) DateTime in WITA/UTC+8 IdTimezone parse DateTime WITA/UTC+8 to IdTimezone class
.fromWIT(DateTime) DateTime in WIT/UTC+9` IdTimezone parse DateTime WIT/UTC+9 to IdTimezone class
2
likes
120
pub points
39%
popularity

Publisher

verified publisheraxemma.my.id

To make it easier to convert time into the form of Indonesian time zones (WIB, WITA, & WIT)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

intl

More

Packages that depend on indonesian_timezone