toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final itemId = this.itemId;
  final lineNumber = this.lineNumber;
  final value = this.value;
  return {'itemId': ?itemId, 'lineNumber': ?lineNumber, 'value': ?value};
}