Proxy.fromJson constructor

Proxy.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory Proxy.fromJson(Map<String, dynamic> json) => Proxy(
      id: json['id'],
      server: json['server'],
      port: json['port'],
      lastUsedDate: json['last_used_date'],
      isEnabled: json['is_enabled'],
      type: ProxyType.fromJson(json['type']),
      extra: json['@extra'],
      clientId: json['@client_id'],
    );