fromJSON method
Implementation
@override
Int32 fromJSON(dynamic jsonValue, DeserializationContext context) {
return jsonValue is Int32
? jsonValue
: jsonValue is String
? Int32.parseInt(jsonValue)
: Int32(jsonValue);
}