DataProvider constructor

DataProvider({
  1. required List<DataRepresentation> representations,
  2. String? suggestedName,
})

Implementation

DataProvider({
  required this.representations,
  this.suggestedName,
});