StaticTag constructor

StaticTag({
  1. required String key,
  2. required String value,
  3. bool active = false,
})

Returns a new StaticTag instance.

Implementation

StaticTag({
  required this.key,
  required this.value,
  this.active = false,
});