RelationStatus.fromJson constructor

RelationStatus.fromJson(
  1. Map json
)

Implementation

RelationStatus.fromJson(Map json) {
  parentObjectId = json['parentObjectId'];
  isConditional = json['isConditional'];
  whereClause = json['whereClause'];
  children = json['children']?.cast<String>();
}