CSSPropertyRegistration constructor

CSSPropertyRegistration({
  1. required String propertyName,
  2. Value? initialValue,
  3. required bool inherits,
  4. required String syntax,
})

Implementation

CSSPropertyRegistration({
  required this.propertyName,
  this.initialValue,
  required this.inherits,
  required this.syntax,
});