DomainId.fromJson constructor

DomainId.fromJson(
  1. Map _json
)

Implementation

DomainId.fromJson(core.Map _json)
    : this(
        customerPrimaryDomain: _json.containsKey('customerPrimaryDomain')
            ? _json['customerPrimaryDomain'] as core.String
            : null,
      );