FilePath constructor

const FilePath({
  1. required String path,
  2. String? name,
})

Implementation

const FilePath({
  required this.path,
  this.name,
});