toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final inventoryItems = this.inventoryItems;
  final kind = this.kind;
  final nextPageToken = this.nextPageToken;
  return {
    'inventoryItems': ?inventoryItems,
    'kind': ?kind,
    'nextPageToken': ?nextPageToken,
  };
}