getEntitlements static method
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);
}