MetadataConfiguration constructor

MetadataConfiguration({
  1. required String token,
  2. required String name,
  3. int? useCount,
  4. String? compressionType,
  5. bool? geoLocation,
  6. bool? shapePolygon,
  7. PtzFilter? ptzStatus,
  8. List<Event>? events,
  9. bool? analytics,
  10. MulticastConfiguration? multicast,
  11. String? sessionTimeout,
  12. Map<String, dynamic>? analyticsEngineConfiguration,
  13. Map<String, dynamic>? extension,
})

Implementation

MetadataConfiguration({
  required this.token,
  required this.name,
  this.useCount,
  this.compressionType,
  this.geoLocation,
  this.shapePolygon,
  this.ptzStatus,
  this.events,
  this.analytics,
  this.multicast,
  this.sessionTimeout,
  this.analyticsEngineConfiguration,
  this.extension,
});