format property

String format

The date format of the calendar value.

Implementation

String get format => _format;
void format=(String format)

Implementation

void set format(String format) {
  if (_format != format) {
    _format = format;
    _dfmt = DateFormat(_format, _locale);
  }
}