ReportException method

Future<void> ReportException(
  1. String name,
  2. String reason,
  3. String message,
  4. int type,
  5. bool isSync,
)
override

Implementation

Future<void> ReportException(String name,String reason,String message,int type,bool isSync,) async{
  var req = {
    "name": name,
    "reason": reason,
    "message": message,
    "type": type,
    "isSync": isSync,
  };
  await methodChannel.invokeListMethod('ReportException',req);
  return;
}