copyWith method

SearchWebApp copyWith({
  1. int? botUserId,
  2. String? webAppShortName,
})

Implementation

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