toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final socialDescription = this.socialDescription;
  final socialImageLink = this.socialImageLink;
  final socialTitle = this.socialTitle;
  return {
    'socialDescription': ?socialDescription,
    'socialImageLink': ?socialImageLink,
    'socialTitle': ?socialTitle,
  };
}