copyWith method
Implementation
InternalLinkTypeBotStart copyWith({
String? botUsername,
String? startParameter,
bool? autostart,
}) => InternalLinkTypeBotStart(
botUsername: botUsername ?? this.botUsername,
startParameter: startParameter ?? this.startParameter,
autostart: autostart ?? this.autostart,
);