copyWith method

InternalLinkTypeBotStart copyWith({
  1. String? botUsername,
  2. String? startParameter,
  3. bool? autostart,
})

Implementation

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