toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final containsText = this.containsText;
  final imageReplaceMethod = this.imageReplaceMethod;
  final imageUrl = this.imageUrl;
  final pageObjectIds = this.pageObjectIds;
  final replaceMethod = this.replaceMethod;
  return {
    'containsText': ?containsText,
    'imageReplaceMethod': ?imageReplaceMethod,
    'imageUrl': ?imageUrl,
    'pageObjectIds': ?pageObjectIds,
    'replaceMethod': ?replaceMethod,
  };
}