copyWith method
ChatBoost
copyWith({
- String? id,
- int? count,
- ChatBoostSource? source,
- int? startDate,
- int? expirationDate,
Implementation
ChatBoost copyWith({
String? id,
int? count,
ChatBoostSource? source,
int? startDate,
int? expirationDate,
}) => ChatBoost(
id: id ?? this.id,
count: count ?? this.count,
source: source ?? this.source,
startDate: startDate ?? this.startDate,
expirationDate: expirationDate ?? this.expirationDate,
);