toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (description != null) 'description': description!,
      if (headerAction != null) 'headerAction': headerAction!,
      if (matchRules != null) 'matchRules': matchRules!,
      if (priority != null) 'priority': priority!,
      if (routeAction != null) 'routeAction': routeAction!,
      if (service != null) 'service': service!,
      if (urlRedirect != null) 'urlRedirect': urlRedirect!,
    };