MapField constructor

const MapField({
  1. int? id,
  2. bool? nullable,
  3. bool ref = false,
  4. bool? dynamic,
  5. TypeSpec? key,
  6. TypeSpec? value,
})

Implementation

const MapField({
  this.id,
  this.nullable,
  this.ref = false,
  this.dynamic,
  this.key,
  this.value,
});