GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.fromJson constructor

GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.fromJson(
  1. Map json_
)

Implementation

GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.fromJson(core.Map json_)
    : this(
        imageUrl: json_.containsKey('imageUrl')
            ? json_['imageUrl'] as core.String
            : null,
        jobTitle: json_.containsKey('jobTitle')
            ? json_['jobTitle'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        sameAs: json_.containsKey('sameAs')
            ? json_['sameAs'] as core.String
            : null,
      );