Count constructor

Count({
  1. required bool approximate,
  2. required int value,
})

Returns a new Count instance.

Implementation

Count({
  required this.approximate,
  required this.value,
});