ZIMKitPickMediaButton constructor

const ZIMKitPickMediaButton({
  1. Key? key,
  2. required dynamic onFilePicked(
    1. List<PlatformFile> files
    ),
  3. Widget? icon,
})

Implementation

const ZIMKitPickMediaButton({
  Key? key,
  required this.onFilePicked,
  this.icon,
}) : super(key: key);