createNotificationChannel method

Future<void> createNotificationChannel(
  1. String channelName
)

Implementation

Future<void> createNotificationChannel(String channelName) async {
  await _channel.invokeMethod(
      'FlowsenseSDK#createNotificationChannel', {'channelName': channelName});
}