copyWith method
GetWebAppUrl
copyWith({
- int? botUserId,
- String? url,
- ThemeParameters? theme,
- String? applicationName,
Implementation
GetWebAppUrl copyWith({
int? botUserId,
String? url,
ThemeParameters? theme,
String? applicationName,
}) =>
GetWebAppUrl(
botUserId: botUserId ?? this.botUserId,
url: url ?? this.url,
theme: theme ?? this.theme,
applicationName: applicationName ?? this.applicationName,
);