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