copyWith method

GetRemoteFile copyWith({
  1. String? remoteFileId,
  2. FileType? fileType,
})

Implementation

GetRemoteFile copyWith({
  String? remoteFileId,
  FileType? fileType,
}) =>
    GetRemoteFile(
      remoteFileId: remoteFileId ?? this.remoteFileId,
      fileType: fileType ?? this.fileType,
    );