roomCodeFormatted property

String get roomCodeFormatted

Implementation

String get roomCodeFormatted {
  final String paddedCode = padLeft(9, '0');
  return "${paddedCode.substring(0, 3)}-${paddedCode.substring(3, 6)}-${paddedCode.substring(6)}";
}