stopMocking method
Implementation
@override
Future<bool> stopMocking() async {
try {
final result = await methodChannel.invokeMethod('stopMocking');
return result;
} on PlatformException catch (e) {
debugPrint('Failed to stop mocking: ${e.message}');
return false;
}
}