setVerbose method
Implementation
void setVerbose(bool isVerbose, String logPath) {
if (isVerbose) {
_channel = VerboseLogMethodChannel(
name: PMConstants.channelPrefix,
logFilePath: logPath,
);
} else {
_channel = const MethodChannel(PMConstants.channelPrefix);
}
}