fromJson static method
Inherited by: DeviceTokenApplePush DeviceTokenApplePushVoIP DeviceTokenBlackBerryPush DeviceTokenFirebaseCloudMessaging DeviceTokenHuaweiPush DeviceTokenMicrosoftPush DeviceTokenMicrosoftPushVoIP DeviceTokenSimplePush DeviceTokenTizenPush DeviceTokenUbuntuPush DeviceTokenWebPush DeviceTokenWindowsPush
Implementation
static DeviceTokenMicrosoftPushVoIP? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return DeviceTokenMicrosoftPushVoIP(
channelUri: (json['channel_uri'] as String?) ?? '',
);
}