getSimCount method

Future<int> getSimCount()

Implementation

Future<int> getSimCount() async {
 final simCount = await _channel.invokeMethod<int>('get_sim_count');
 return simCount ?? 0;
  }