getDemocracyUnlocks method

Future<List?> getDemocracyUnlocks(
  1. String address
)

Implementation

Future<List?> getDemocracyUnlocks(String address) async {
  final List? res = await service.getDemocracyUnlocks(address);
  return res;
}