JSON_Widget constructor

const JSON_Widget({
  1. Key? key,
  2. required Map data,
  3. required String apiURL,
  4. List<String> filterFields = const [],
})

Implementation

const JSON_Widget({
  Key? key,
  required this.data,
  required this.apiURL,
  this.filterFields = const []
}) : super(key: key);