shortDisplay property

String get shortDisplay

Gets a short display like "FY24-Q1".

Implementation

String get shortDisplay {
  final shortYear = year % 100;
  return "FY${shortYear.toString().padLeft(2, '0')}-Q$quarter";
}