DomainCalls.fromJson constructor

DomainCalls.fromJson(
  1. Map json_
)

Implementation

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