ResourceListChangedNotification.toMCP constructor
Implementation
factory ResourceListChangedNotification.toMCP(Map<String, Object?> map) {
return ResourceListChangedNotification(
params: map['params'] != null
? NotificationParams.toMCP(map['params'] as Map<String, Object?>)
: null,
);
}