getFirstDayOfWeek method

Future<int?> getFirstDayOfWeek()

Returns the first day of week for the current locale of device. The values are numbered following the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Implementation

Future<int?> getFirstDayOfWeek() {
  return LocalePlusPlatform.instance.getFirstDayOfWeek();
}