Int8 constructor
Int8([
- int? _v
Implementation
Int8([this._v]) {
if (_v!=null) {
if ( _v! < -128 || _v! > 127 ) {
throw Exception('CandidType: Int8 value must be between -128<=value && value <=127');
}
}
}