getSimCards method

Future<List<Map<String, dynamic>>> getSimCards()

Retrieves a list of available SIM cards on the device.

This method must be implemented by platform-specific classes.

Throws UnimplementedError if not overridden.

Implementation

Future<List<Map<String, dynamic>>> getSimCards() {
  throw UnimplementedError('getSimCards() has not been implemented.');
}