toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (category != null) 'category': category!,
      if (homepage != null) 'homepage': homepage!,
      if (isFirstParty != null) 'isFirstParty': isFirstParty!,
      if (isUnrecognized != null) 'isUnrecognized': isUnrecognized!,
      if (name != null) 'name': name!,
      if (origins != null) 'origins': origins!,
    };