euroComma property Null safety

bool euroComma

Should we show numbers Euro-style, with commas instead of periods and vice-versa?

Implementation

bool get euroComma => _euroComma;
void euroComma=(bool v)

Implementation

set euroComma(bool v) {
  _euroComma = v;
  _model.needsSave = true;
}