copyWith method

HomeAttributesCollection copyWith({
  1. int? id,
  2. String? label,
})

Implementation

HomeAttributesCollection copyWith({
  int? id,
  String? label,
}) =>
    HomeAttributesCollection(
      id: id ?? this.id,
      label: label ?? this.label,
    );