toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    'site_icon_url': siteIconUrl,
    'site_icon': siteIcon,
    'site_logo': siteLogo,
    'name': name,
    'description': description,
    'url': url,
    'home': home,
    'gmt_offset': gmtOffset,
    'timezone_string': timezoneString,
    'namespaces': namespaces,
    'authentication': authentication,
    'routes': routes,
  };
}