copyWith method

CrmProject copyWith({
  1. int? id,
  2. String? label,
  3. int? createdBy,
  4. int? createdAt,
  5. int? updatedAt,
})

Implementation

CrmProject copyWith({
  int? id,
  String? label,
  int? createdBy,
  int? createdAt,
  int? updatedAt,
}) => CrmProject(
  id: id ?? this.id,
  label: label ?? this.label,
  createdBy: createdBy ?? this.createdBy,
  createdAt: createdAt ?? this.createdAt,
  updatedAt: updatedAt ?? this.updatedAt,
);