CacheBehaviorPerPath.fromJson constructor
Implementation
factory CacheBehaviorPerPath.fromJson(Map<String, dynamic> json) {
return CacheBehaviorPerPath(
behavior: (json['behavior'] as String?)?.toBehaviorEnum(),
path: json['path'] as String?,
);
}