Counters.fromJson constructor

Counters.fromJson(
  1. Map json_
)

Implementation

Counters.fromJson(core.Map json_)
  : this(
      failedObjectCount: json_['failedObjectCount'] as core.String?,
      succeededObjectCount: json_['succeededObjectCount'] as core.String?,
      totalObjectCount: json_['totalObjectCount'] as core.String?,
    );