UnitString constructor

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

Implementation

const UnitString({
  required String uName,
  List<Constraints>? constraints,
  String? defaultValue,
  bool? nullable,
}) : super(uName: uName, constraints: constraints, defaultValue: defaultValue, nullable: nullable);