RemoveContextChildrenRequest.fromJson constructor

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

Implementation

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