destinationUrl property
String?
get
destinationUrl
Implementation
String? get destinationUrl {
final body = this.body;
if (isDestinationUrl) {
assert(body is PushDestinationUrlBody);
return (body as PushDestinationUrlBody).url;
} else {
return null;
}
}