toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (appStartTimeout != null) 'appStartTimeout': appStartTimeout!,
      if (checkInterval != null) 'checkInterval': checkInterval!,
      if (failureThreshold != null) 'failureThreshold': failureThreshold!,
      if (host != null) 'host': host!,
      if (path != null) 'path': path!,
      if (successThreshold != null) 'successThreshold': successThreshold!,
      if (timeout != null) 'timeout': timeout!,
    };