SerField constructor

const SerField({
  1. required String idl,
  2. required String type,
  3. required String did,
  4. String? id,
  5. bool nullable = false,
  6. String? ser,
  7. String? deser,
})

Implementation

const SerField({
  required this.idl,
  required this.type,
  required this.did,
  this.id,
  this.nullable = false,
  this.ser,
  this.deser,
});