fromJson static method

DeepLinkEvent fromJson(
  1. dynamic json
)

Implementation

static DeepLinkEvent fromJson(dynamic json) {
  var deepLink = json["deepLink"] as String;
  return DeepLinkEvent._internal(deepLink);
}