RuleChainConnectionInfo.fromJson constructor

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

Implementation

RuleChainConnectionInfo.fromJson(Map<String, dynamic> json)
    : fromIndex = json['fromIndex'],
      targetRuleChainId = RuleChainId.fromJson(json['toIndex']),
      type = json['type'],
      additionalInfo = json['additionalInfo'];