ContextField constructor

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

Implementation

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