update method

  1. @override
Tag update(
  1. String key,
  2. Tag update(
    1. Tag value
    ), {
  3. Tag ifAbsent()?,
})
override

DO NOT USE

Implementation

@override
Tag update(String key, Tag Function(Tag value) update,
    {Tag Function()? ifAbsent}) {
  return value.update(key, update);
}