ContentCreated method
Implementation
@override
Future<void> ContentCreated(String content) async {
try {
await methodChannel.invokeMethod('ContentCreated', {'content': content});
} on PlatformException catch (e) {
print("Failed to call ContentCreated: ${e.message}");
}
}