Feature.named constructor

Feature.named({
  1. int? id,
  2. required String name,
  3. DateTime? createdDate,
  4. String? initialValue,
  5. bool? defaultValue,
  6. String? description,
})

Implementation

factory Feature.named({
  int? id,
  required String name,
  DateTime? createdDate,
  String? initialValue,
  bool? defaultValue,
  String? description,
}) =>
    Feature(
        id: id,
        name: name,
        createdDate: createdDate,
        initialValue: initialValue,
        defaultValue: defaultValue,
        description: description);