PingConfig.fromJson constructor

PingConfig.fromJson(
  1. Map json_
)

Implementation

PingConfig.fromJson(core.Map json_)
    : this(
        pingsCount: json_.containsKey('pingsCount')
            ? json_['pingsCount'] as core.int
            : null,
      );