DomainCalls.fromJson constructor

DomainCalls.fromJson(
  1. Map json_
)

Implementation

DomainCalls.fromJson(core.Map json_)
    : this(
        domain: json_.containsKey('domain')
            ? json_['domain'] as core.String
            : null,
        httpCallCount: json_.containsKey('httpCallCount')
            ? json_['httpCallCount'] as core.int
            : null,
      );