toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final staticText = this.staticText;
  final textResponseInstruction = this.textResponseInstruction;
  final type = this.type;
  return {
    'staticText': ?staticText,
    'textResponseInstruction': ?textResponseInstruction,
    'type': ?type,
  };
}