EntityTypeVersionLoadRequest.fromJson constructor

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

Implementation

EntityTypeVersionLoadRequest.fromJson(Map<String, dynamic> json)
    : entityTypes = (json['entityTypes'] as Map).map((key, value) => MapEntry(
          entityTypeFromString(key),
          EntityTypeVersionLoadConfig.fromJson(value))),
      super._fromJson(json);