toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final numActiveRows = this.numActiveRows;
final numRowsProcessed = this.numRowsProcessed;
final numRowsTotal = this.numRowsTotal;
final numRowsWithErrors = this.numRowsWithErrors;
final numWarningsTotal = this.numWarningsTotal;
return {
'numActiveRows': ?numActiveRows,
'numRowsProcessed': ?numRowsProcessed,
'numRowsTotal': ?numRowsTotal,
'numRowsWithErrors': ?numRowsWithErrors,
'numWarningsTotal': ?numWarningsTotal,
};
}