copyWith method

GetManagedBotToken copyWith({
  1. int? botUserId,
  2. bool? revoke,
})

Implementation

GetManagedBotToken copyWith({int? botUserId, bool? revoke}) =>
    GetManagedBotToken(
      botUserId: botUserId ?? this.botUserId,
      revoke: revoke ?? this.revoke,
    );