toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final oneItem = this.oneItem;
  final threeItems = this.threeItems;
  final twoItems = this.twoItems;
  return {
    'oneItem': ?oneItem,
    'threeItems': ?threeItems,
    'twoItems': ?twoItems,
  };
}