copyWith method

CheckWebAppFileDownload copyWith({
  1. int? botUserId,
  2. String? fileName,
  3. String? url,
})

Implementation

CheckWebAppFileDownload copyWith({
  int? botUserId,
  String? fileName,
  String? url,
}) => CheckWebAppFileDownload(
  botUserId: botUserId ?? this.botUserId,
  fileName: fileName ?? this.fileName,
  url: url ?? this.url,
);