getAllLocal method

  1. @override
Future<List<String>> getAllLocal()
override

Implementation

@override
Future<List<String>> getAllLocal() async {
  var response=await methodChannel.invokeListMethod("getAllLocal");
  if(response!=null){
    List<String> tmpList = List<String>.from(response);
    return tmpList;
  }

  return [];
}