MemorySelectOption constructor

const MemorySelectOption({
  1. required String label,
  2. required String value,
  3. String description = '',
  4. bool isFolder = false,
})

Implementation

const MemorySelectOption({
  required this.label,
  required this.value,
  this.description = '',
  this.isFolder = false,
});