copyWith method

BlockingDashboardEntity copyWith({
  1. String? documentID,
  2. String? appId,
  3. String? description,
  4. StorageConditionsEntity? conditions,
})

Implementation

BlockingDashboardEntity copyWith({
  String? documentID,
  String? appId,
  String? description,
  StorageConditionsEntity? conditions,
}) {
  return BlockingDashboardEntity(
    appId: appId ?? this.appId,
    description: description ?? this.description,
    conditions: conditions ?? this.conditions,
  );
}