copyWith method

BusinessConnectedBotInfo copyWith({
  1. BusinessConnectedBot? bot,
  2. int? connectionDate,
  3. String? deviceModel,
  4. 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,
);