copyWith method
BusinessConnectedBotInfo
copyWith({
- BusinessConnectedBot? bot,
- int? connectionDate,
- String? deviceModel,
- String? location,
Implementation
BusinessConnectedBotInfo copyWith({
BusinessConnectedBot? bot,
int? connectionDate,
String? deviceModel,
String? location,
}) => BusinessConnectedBotInfo(
bot: bot ?? this.bot,
connectionDate: connectionDate ?? this.connectionDate,
deviceModel: deviceModel ?? this.deviceModel,
location: location ?? this.location,
);