signed constructor

signed({
  1. required int value,
})

signed represent an signed integer. This is the base class for all signed integer datatypes

This abstraction doesn't tell you about the bit-width of the integer

Implementation

signed({required int value}) : super(value: value);