yyMd property

String get yyMd

Returns this DateTime formatted in yyMd format.

Implementation

String get yyMd => DateFormat.yMd()
    .format(this)
    .replaceFirst(
      DateTime.now().year.toString(),
      DateFormat('yy').format(this),
    );