SuperBatchWebResourcesUris.fromJson constructor

SuperBatchWebResourcesUris.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory SuperBatchWebResourcesUris.fromJson(Map<String, Object?> json) {
  return SuperBatchWebResourcesUris(
    all: json[r'all'],
    css: json[r'css'],
    js: json[r'js'],
  );
}