getUpdateProgress method

Future<int?> getUpdateProgress()

Implementation

Future<int?> getUpdateProgress() async{
   int? process = await _methodChannel.invokeMethod('getUpdateProgress');
  return process;

}