getReferendumVoteConvictions method

Future<List?> getReferendumVoteConvictions()

Implementation

Future<List?> getReferendumVoteConvictions() async {
  final dynamic res = await serviceRoot.webView!
      .evalJavascript('gov2.getReferendumVoteConvictions(api)');
  return res;
}