Files constructor

Files({
  1. String? file,
  2. String? title,
})

Implementation

Files({
    String? file,
    String? title,}){
  _file = file;
  _title = title;
}