toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final componentStates = this.componentStates;
  final policyContentState = this.policyContentState;
  final state = this.state;
  return {
    'componentStates': ?componentStates,
    'policyContentState': ?policyContentState,
    'state': ?state,
  };
}