history method

Future history(
  1. DateTime startTimeUtc,
  2. DateTime endTimeUtc,
  3. int count
)

get transaction history

Implementation

Future<dynamic> history(
    DateTime startTimeUtc, DateTime endTimeUtc, int count) async {
  if (client!.isClosed) {
    await init();
  }

  var histResult = await client!.sendRequest('History', [
    accountId,
    startTimeUtc.millisecondsSinceEpoch,
    endTimeUtc.microsecondsSinceEpoch,
    count
  ]);
  return histResult;
}