switchActiveSIM method

  1. @override
Future<bool> switchActiveSIM({
  1. required int slotIndex,
})
override

Implementation

@override
Future<bool> switchActiveSIM({required int slotIndex}) async {
  final bool success = await methodChannel.invokeMethod('switchActiveSIM', {
    'slotIndex': slotIndex,
  });
  return success;
}