toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowMissing = this.allowMissing;
  final placeIds = this.placeIds;
  final removeTime = this.removeTime;
  return {
    'allowMissing': ?allowMissing,
    'placeIds': ?placeIds,
    'removeTime': ?removeTime,
  };
}