Tag constructor

Tag({
  1. required String key,
  2. required String value,
  3. required int ttl,
  4. required String strategy,
})

Implementation

Tag({
  required this.key,
  required this.value,
  required this.ttl,
  required this.strategy,
});