JsonPathApiConfiguration constructor

JsonPathApiConfiguration({
  1. String? title,
  2. String url = '',
  3. Map<String, String>? headers,
  4. List<(String, String)>? requestBody,
  5. JSONPath rootField = const JSONPath(r'$'),
  6. DisplayFieldMap? fieldMap,
})

Implementation

JsonPathApiConfiguration({
  super.title,
  this.url = '',
  this.headers,
  this.requestBody,
  this.rootField = const JSONPath(r'$'),
  this.fieldMap,
}) : super(schemaType: schemaName);