UintField constructor

UintField(
  1. String key,
  2. FieldType type,
  3. String? name,
  4. int addr,
  5. int size, {
  6. String? tag,
  7. List? selection,
})

Implementation

UintField(String key, FieldType type, String? name, int addr,int size,
    {String? tag, List? selection})
    :super(key,type,name,addr,size){
  if (2 != size) throw Exception("The int type's size should be 2 in the json.");
}