toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bigQueryKey = this.bigQueryKey;
  final datastoreKey = this.datastoreKey;
  final idValues = this.idValues;
  return {
    'bigQueryKey': ?bigQueryKey,
    'datastoreKey': ?datastoreKey,
    'idValues': ?idValues,
  };
}