toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (about != null) 'about': about!,
      if (blogs != null) 'blogs': blogs!,
      if (created != null) 'created': created!,
      if (displayName != null) 'displayName': displayName!,
      if (id != null) 'id': id!,
      if (kind != null) 'kind': kind!,
      if (locale != null) 'locale': locale!,
      if (selfLink != null) 'selfLink': selfLink!,
      if (url != null) 'url': url!,
    };