UnitConvertible<T> constructor

const UnitConvertible<T>({
  1. required String uName,
  2. List<Constraints>? constraints,
  3. T? defaultValue,
  4. bool? nullable,
})

Implementation

const UnitConvertible({
  required this.uName,
  this.constraints,
  this.defaultValue,
  this.nullable,
});