simInfo method

Future<List> simInfo()
override

Implementation

Future<List> simInfo() async{
  String result = await methodChannel.invokeMethod('simInfo');
  return jsonDecode(result);
}