CrcValue constructor

CrcValue(
  1. dynamic value
)

Implementation

CrcValue(dynamic value)
    : _intValue = (value is int) ? value : null,
      _bigIntValue = (value is BigInt) ? value : null {
  assert(_intValue != null || !_bigIntValue!.isNegative);
}