$ThirdPartyUrl.fromJson constructor

$ThirdPartyUrl.fromJson(
  1. Map json_
)

Implementation

$ThirdPartyUrl.fromJson(core.Map json_)
    : this(
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
        url: json_.containsKey('url') ? json_['url'] as core.String : null,
      );