ResourceUpdatedNotificationParams.toMCP constructor
Implementation
factory ResourceUpdatedNotificationParams.toMCP(Map<String, Object?> map) {
return ResourceUpdatedNotificationParams(
$meta: map['_meta'] != null
? NotificationMetaObject.toMCP(map['_meta'] as Map<String, Object?>)
: null,
uri: map['uri'] as String,
);
}