AiutaShareFeature constructor

AiutaShareFeature({
  1. AiutaShareWatermarkFeature? watermark,
  2. required AiutaShareIcons icons,
  3. required AiutaShareStrings strings,
  4. AiutaShareDataProvider? dataProvider,
})

Creates an AiutaShareFeature with optional watermark to be added to the shared images, icons and strings for the share feature, and optional dataProvider for additional text to be shared.

Implementation

AiutaShareFeature({
  this.watermark,
  required this.icons,
  required this.strings,
  this.dataProvider,
});