NiceExportButton constructor
const
NiceExportButton({
- Key? key,
- required List<
NiceExportFormat> formats, - required void onExport(
- NiceExportFormat format
- bool loading = false,
- String? label = 'Export',
- IconData? icon = Icons.download,
Implementation
const NiceExportButton({
super.key,
required this.formats,
required this.onExport,
this.loading = false,
this.label = 'Export',
this.icon = Icons.download,
});