ReplaceableAttribute constructor

ReplaceableAttribute({
  1. required String name,
  2. required String value,
  3. bool? replace,
})

Implementation

ReplaceableAttribute({
  required this.name,
  required this.value,
  this.replace,
});