getSimData method

  1. @override
Future<String?> getSimData()
override

Supported only for Android! Fetches the SIM data and returns List<SimDataModel>

Implementation

@override
Future<String?> getSimData() async {
  final version = await methodChannel.invokeMethod<String>('get_sim_data');
  return version;
}