fromMap static method
override
Construct from Map.
Implementation
static SetScopeNotificationSettings? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var scope = NotificationSettingsScope.fromMap(_map['scope'])!;
var notification_settings =
ScopeNotificationSettings.fromMap(_map['notification_settings'])!;
return SetScopeNotificationSettings(
extra: extra,
clientId: clientId,
scope: scope,
notification_settings: notification_settings,
);
}