PropertyDefinition constructor

PropertyDefinition({
  1. required String name,
  2. String? syntax,
  3. bool? inherits,
  4. String? initialValue,
})

Implementation

factory PropertyDefinition(
        {required String name,
        String? syntax,
        bool? inherits,
        String? initialValue}) =>
    PropertyDefinition._(
        name: name,
        syntax: syntax ?? '*',
        inherits: inherits ?? undefined,
        initialValue: initialValue ?? undefined);