JsonGetAttribute constructor

const JsonGetAttribute({
  1. required ID? cubitID,
  2. required ID? stateID,
  3. required ID? variableID,
  4. required VariableTypes type,
  5. required String jsonPath,
  6. int? overridedLoop,
  7. FormatOptionsHelper formatOptions = const FormatOptionsHelper(options: []),
  8. FormatOptionsHelper listFormatOptions = const FormatOptionsHelper(options: []),
})

Implementation

const JsonGetAttribute({
  required this.cubitID,
  required this.stateID,
  required this.variableID,
  required this.type,
  required this.jsonPath,
  this.overridedLoop,
  this.formatOptions = const FormatOptionsHelper(options: []),
  this.listFormatOptions = const FormatOptionsHelper(options: []),
});