SuperBatchWebResourcesTags.fromJson constructor

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

Implementation

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