copyWith method

Filename$Response copyWith({
  1. String? filename,
})

Implementation

Filename$Response copyWith({String? filename}) {
  return Filename$Response(filename: filename ?? this.filename);
}