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