DomainProperty.fromJson constructor

DomainProperty.fromJson(
  1. Map json_
)

Implementation

DomainProperty.fromJson(core.Map json_)
  : this(
      ownershipVerified: json_['ownershipVerified'] as core.bool?,
      url: json_['url'] as core.String?,
    );