ShareActionSheet constructor

ShareActionSheet({
  1. List<ShareItem>? firstShareChannels,
  2. List<ShareItem>? secondShareChannels,
  3. String? mainTitle,
  4. Alignment? mainTitleAlignment,
  5. ShareActionSheetItemClickCallBack? clickCallBack,
  6. ShareActionSheetOnItemClickInterceptor? clickInterceptor,
  7. String? cancelTitle,
  8. Color shareTextColor = const Color(0xff999999),
  9. Color textColor = const Color(0xff222222),
})

Implementation

ShareActionSheet({
  this.firstShareChannels,
  this.secondShareChannels,
  this.mainTitle,
  this.mainTitleAlignment,
  this.clickCallBack,
  this.clickInterceptor,
  this.cancelTitle,
  this.shareTextColor = const Color(0xff999999),
  this.textColor = const Color(0xff222222),
});