toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (availableInventoryItemIds != null)
        'availableInventoryItemIds': availableInventoryItemIds!,
      if (createTime != null) 'createTime': createTime!,
      if (details != null) 'details': details!.toJson(),
      if (installedInventoryItemIds != null)
        'installedInventoryItemIds': installedInventoryItemIds!,
      if (updateTime != null) 'updateTime': updateTime!,
    };