copyWith method

FeaturesId copyWith(
  1. {num? id,
  2. String? name,
  3. String? status,
  4. String? createdAt,
  5. String? updatedAt}
)

Implementation

FeaturesId copyWith({
  num? id,
  String? name,
  String? status,
  String? createdAt,
  String? updatedAt,
}) =>
    FeaturesId(
      id: id ?? this.id,
      name: name ?? this.name,
      status: status ?? this.status,
      createdAt: createdAt ?? this.createdAt,
      updatedAt: updatedAt ?? this.updatedAt,
    );