DirectoryPickerData constructor

DirectoryPickerData({
  1. required Widget child,
  2. bool? allowFolderCreation,
  3. Color? backgroundColor,
  4. String? message,
  5. Directory? rootDirectory,
  6. ShapeBorder? shape,
})

Implementation

DirectoryPickerData(
    {required Widget child,
    this.allowFolderCreation,
    this.backgroundColor,
    this.message,
    this.rootDirectory,
    this.shape})
    : super(child: child);