copyWith method

GetBotMediaPreviewInfo copyWith({
  1. int? botUserId,
  2. String? languageCode,
})

Implementation

GetBotMediaPreviewInfo copyWith({int? botUserId, String? languageCode}) =>
    GetBotMediaPreviewInfo(
      botUserId: botUserId ?? this.botUserId,
      languageCode: languageCode ?? this.languageCode,
    );