DomainMembership.fromJson constructor

DomainMembership.fromJson(
  1. Map json_
)

Implementation

DomainMembership.fromJson(core.Map json_)
    : this(
        inViewerDomain: json_.containsKey('inViewerDomain')
            ? json_['inViewerDomain'] as core.bool
            : null,
      );