getAllLocal method
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 [];
}