toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createItem = this.createItem;
  final deleteItem = this.deleteItem;
  final moveItem = this.moveItem;
  final updateFormInfo = this.updateFormInfo;
  final updateItem = this.updateItem;
  final updateSettings = this.updateSettings;
  return {
    'createItem': ?createItem,
    'deleteItem': ?deleteItem,
    'moveItem': ?moveItem,
    'updateFormInfo': ?updateFormInfo,
    'updateItem': ?updateItem,
    'updateSettings': ?updateSettings,
  };
}