toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final body = this.body;
  final header = this.header;
  final image = this.image;
  final sortIndex = this.sortIndex;
  final uri = this.uri;
  final viewConstraints = this.viewConstraints;
  return {
    'body': ?body,
    'header': ?header,
    'image': ?image,
    'sortIndex': ?sortIndex,
    'uri': ?uri,
    'viewConstraints': ?viewConstraints,
  };
}