ValidatedQuantity constructor

ValidatedQuantity({
  1. required UcumDecimal value,
  2. String? unit,
})

Implementation

ValidatedQuantity({required super.value, String? unit})
    : super(unit: (unit?.isNotEmpty ?? false) ? unit! : '1');