DataTablesAPI constructor

DataTablesAPI({
  1. Key? key,
  2. @required Uri? url,
  3. @required List<FieldsDataTablesAPI>? fields,
  4. Map<String, String>? headers,
  5. bool? search = true,
  6. String? labelSearch = "Pesquisar",
  7. bool? searchOnChange = true,
  8. String? title,
})

Implementation

DataTablesAPI({
  Key? key,
  @required this.url,
  @required this.fields,
  this.headers,
  this.search = true,
  this.labelSearch = "Pesquisar",
  this.searchOnChange = true,
  this.title,
}) : super(key: key);