ArrowField constructor

const ArrowField({
  1. required String name,
  2. required ArrowDataType type,
  3. bool nullable = true,
  4. Map<String, String> metadata = const {},
})

Implementation

const ArrowField({
  required this.name,
  required this.type,
  this.nullable = true,
  this.metadata = const {},
});