setProperty method

  1. @override
void setProperty(
  1. String propertyName,
  2. String? value, {
  3. bool? isImportant,
  4. String? baseHref,
  5. bool validate = true,
})
override

Modifies an existing CSS property or creates a new CSS property in the declaration block.

Implementation

@override
void setProperty(
  String propertyName,
  String? value, {
  bool? isImportant,
  String? baseHref,
  bool validate = true,
}) {
  throw UnimplementedError('No Modification Allowed');
}