dateFormat property
String?
get
dateFormat
Change the format string of displayed dates in the results.
Mask examples: dd/mm/yyyy
, mm/dd/yyyy
, dd-mm-yyyy
, mm-dd-yyyy
, dd/mm/yy
.
Set to null
to revert default value.
Default: depends on the device's locale.
Implementation
String? get dateFormat => _dateFormat;
set
dateFormat
(String? val)
Implementation
set dateFormat(String? val) {
_dateFormat = val;
_set({"dateFormat": val});
}