toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deletedRowCount = this.deletedRowCount;
  final insertedRowCount = this.insertedRowCount;
  final updatedRowCount = this.updatedRowCount;
  return {
    'deletedRowCount': ?deletedRowCount,
    'insertedRowCount': ?insertedRowCount,
    'updatedRowCount': ?updatedRowCount,
  };
}