getPushChannel method
Get the push channel for the device.
Implementation
@override
Future<String> getPushChannel() async {
final result = await methodChannel.invokeMethod<String>(
'AzNotificationHub.getPushChannel',
);
return result ?? '';
}