getPushChannel method

  1. @override
Future<String> getPushChannel()
override

Get the push channel for the device.

Implementation

@override
Future<String> getPushChannel() async {
  final result = await methodChannel.invokeMethod<String>(
    'AzNotificationHub.getPushChannel',
  );
  return result ?? '';
}