copyWith method
Implementation
ActivityDefinition copyWith({int? id, String? name, num? weight}) {
return ActivityDefinition(
id: id ?? this.id,
name: name ?? this.name,
weight: weight ?? this.weight,
);
}
ActivityDefinition copyWith({int? id, String? name, num? weight}) {
return ActivityDefinition(
id: id ?? this.id,
name: name ?? this.name,
weight: weight ?? this.weight,
);
}