invokeSDK method

  1. @override
Future<void> invokeSDK(
  1. dynamic hours
)
override

This method implements the invokeSDK and communicated with native side passes values and maintains proper checks

Implementation

@override

///This method implements the invokeSDK and communicated with native side passes values and maintains proper checks
Future<void> invokeSDK(hours) async {
  methodChannel.invokeMethod<String>('invokeSDK', {"hours": hours});
}