getSmartCodeEventByHeight method
Implementation
Future<dynamic> getSmartCodeEventByHeight(int height) async {
var data = {
'Action': 'getsmartcodeeventbyhash',
'Version': '1.0.0',
'Height': height.toString(),
};
return send(data);
}