getActions method
Get AMAX account actions
Implementation
Future<Actions> getActions(String accountName,
{int pos = -1, int offset = -1}) async {
return this._post('/history/get_actions', {
'account_name': accountName,
'pot': pos,
'offset': offset
}).then((actions) {
return Actions.fromJson(actions);
});
}