setEntity function

Future setEntity(
  1. int address
)

Implementation

Future setEntity(int address) async {
  if (Platform.isAndroid) {
    setSdkAndroid(address);
  } else if (Platform.isIOS) {
    await setSdkIosAsync(address);
  }
}