ClientIPConfig.fromJson constructor
Creates a ClientIPConfig from JSON data.
Implementation
factory ClientIPConfig.fromJson(Map<String, dynamic> json) {
final tempTimeoutSecondsJson = json['timeoutSeconds'];
final int? tempTimeoutSeconds = tempTimeoutSecondsJson;
return ClientIPConfig(
timeoutSeconds: tempTimeoutSeconds,
);
}