toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final presentationId = this.presentationId;
  final replies = this.replies;
  final writeControl = this.writeControl;
  return {
    'presentationId': ?presentationId,
    'replies': ?replies,
    'writeControl': ?writeControl,
  };
}