ContributorInfo.fromJson constructor

ContributorInfo.fromJson(
  1. Map json_
)

Implementation

ContributorInfo.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        profilePictureBaseUrl: json_.containsKey('profilePictureBaseUrl')
            ? json_['profilePictureBaseUrl'] as core.String
            : null,
      );