ResourcePathComponent.fromJson constructor

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

Implementation

factory ResourcePathComponent.fromJson(Map<String, dynamic> json) {
  return ResourcePathComponent(
    id: json['Id'] as String?,
    name: json['Name'] as String?,
  );
}