ResourceUpdatedNotification.fromJson constructor

ResourceUpdatedNotification.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ResourceUpdatedNotification.fromJson(Map<String, dynamic> json) {
  return ResourceUpdatedNotification(uri: json['uri'] as String);
}