ContextField constructor

ContextField({
  1. required String name,
  2. required String type,
  3. bool isList = false,
  4. bool isMap = false,
  5. bool isCustom = false,
})

Implementation

ContextField({
  required this.name,
  required this.type,
  this.isList = false,
  this.isMap = false,
  this.isCustom = false,
});