formatValue method Null safety

  1. @override
String formatValue(
  1. Value v
)
override

Implementation

@override
String formatValue(Value v) {
  final int? mx = v.asMatrix;
  if (mx == null) {
    return super.formatValue(v);
  } else {
    return matrices[mx].lcdString;
  }
}