getAccountInfo method

Future<EpicAccountInfo> getAccountInfo()

Get account info for the epic account.

Implementation

Future<EpicAccountInfo> getAccountInfo() async {
  dynamic res = await _client.send(
    method: "GET",
    url: "${Endpoints().accountMultiple}/${_client.accountId}",
  );

  return EpicAccountInfo.fromJson(res);
}