copyWith method

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

Implementation

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