toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fields = this.fields;
  final objectId = this.objectId;
  final slideProperties = this.slideProperties;
  return {
    'fields': ?fields,
    'objectId': ?objectId,
    'slideProperties': ?slideProperties,
  };
}