getText method
Implementation
Future<String?> getText(
String packageName, int resid, ApplicationInfo? appInfo) async {
return await invokeMethod<String?>(_GET_TEXT, {
"packageName": packageName,
"resid": resid,
"appInfo": appInfo?.toMap()
});
}