FreezingException constructor

const FreezingException({
  1. required Any toFreeze,
  2. required Any blocker,
})

Exception thrown whenever freezing is not possible.

Implementation

const FreezingException({
  required this.toFreeze,
  required this.blocker,
});