StreamPartSource constructor

StreamPartSource({
  1. required String id,
  2. required String sourceType,
  3. String? url,
  4. String? title,
  5. Map<String, dynamic>? providerMetadata,
})

Implementation

StreamPartSource({
  required this.id,
  required this.sourceType,
  this.url,
  this.title,
  this.providerMetadata,
});