copyWith method

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

Implementation

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