toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final conditionCheck = this.conditionCheck;
  final delete = this.delete;
  final put = this.put;
  final update = this.update;
  return {
    if (conditionCheck != null) 'ConditionCheck': conditionCheck,
    if (delete != null) 'Delete': delete,
    if (put != null) 'Put': put,
    if (update != null) 'Update': update,
  };
}