DestinationUrlEvidence.fromJson constructor

DestinationUrlEvidence.fromJson(
  1. Map json_
)

Implementation

DestinationUrlEvidence.fromJson(core.Map json_)
    : this(
        destinationUrl: json_.containsKey('destinationUrl')
            ? json_['destinationUrl'] as core.String
            : null,
      );