Flutter – Can enums share concrete methods to avoid repetition?
I use value objects that have a [unit] property that is a enum. My enums implement an interface to permit conversion between units (cm to m, kg to g, etc...) Like this : class Height { final double value; final…