Fetching Details From License
Setting up License
The method used to fetch the details from the license is
AccuraOcr.getMetaData()The example function is shown below
Future<void> getMetaData() async{
try {
await AccuraOcr.getMetaData().then((value) =>
print(value));
}on PlatformException{}
if (!mounted) return;
}Response:
Last updated