toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final acknowledgementTime = this.acknowledgementTime;
  final comment = this.comment;
  final userName = this.userName;
  return {
    'acknowledgementTime': ?acknowledgementTime,
    'comment': ?comment,
    'userName': ?userName,
  };
}