copyWith method

GetFile copyWith({
  1. int? fileId,
})

Implementation

GetFile copyWith({
  int? fileId,
}) =>
    GetFile(
      fileId: fileId ?? this.fileId,
    );