getEntitlements static method

Future<List<NamiEntitlement>> getEntitlements()

Get a list of NamiEntitlement from that have been configured on Nami Control Center

Implementation

static Future<List<NamiEntitlement>> getEntitlements() async {
  List<dynamic> list = await channel.invokeMethod("getEntitlements");
  return _mapToNamiEntitlementList(list);
}