getSimCard method

  1. @override
Future<SimCards> getSimCard()
override

Implementation

@override
Future<SimCards> getSimCard() async {
  return SimCards.fromMap(
      (await methodChannel.invokeMapMethod('getSimCards'))!
          .cast<String, dynamic>());
}