toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final capabilities = this.capabilities;
  final choiceId = this.choiceId;
  final createTime = this.createTime;
  final creator = this.creator;
  final deleteTime = this.deleteTime;
  final fieldId = this.fieldId;
  final name = this.name;
  final state = this.state;
  return {
    'capabilities': ?capabilities,
    'choiceId': ?choiceId,
    'createTime': ?createTime,
    'creator': ?creator,
    'deleteTime': ?deleteTime,
    'fieldId': ?fieldId,
    'name': ?name,
    'state': ?state,
  };
}