TLSRoute.fromJson constructor
Creates a TLSRoute from JSON data.
Implementation
TLSRoute.fromJson(Map<String, dynamic> json)
: this(
match: TLSMatchAttributes.fromJson(json['match']),
route: json['route'] != null
? RouteDestination.fromJson(json['route'])
: null,
);