NiceDocumentVersionList constructor
- Key? key,
- required List<
NiceDocumentVersion> versions, - String title = 'Version History',
- void onVersionTap()?,
- void onRestore()?,
- String? currentVersion,
Implementation
const NiceDocumentVersionList({
super.key,
required this.versions,
this.title = 'Version History',
this.onVersionTap,
this.onRestore,
this.currentVersion,
});