AddContextChildrenRequest.fromJson constructor

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

Implementation

factory AddContextChildrenRequest.fromJson(Map<String, dynamic> json) {
  return AddContextChildrenRequest(
    context: json['context'] ?? '',
    childContexts: decodeList(json['childContexts']) ?? [],
  );
}