Int16 constructor

Int16([
  1. int? _v
])

Implementation

Int16([this._v]) {
    if (_v!=null) {
        if (_v! < pow(-2,15) || _v! > pow(2,15)-1 ) {
            throw Exception('CandidType: Int16 value must be between ${pow(-2,15)} <= value && value <= ${pow(2,15)-1}');
        }
    }
}