StageSummary.fromJson constructor

StageSummary.fromJson(
  1. Map json_
)

Implementation

StageSummary.fromJson(core.Map json_)
  : this(
      count: json_['count'] as core.String?,
      minutes: json_['minutes'] as core.String?,
      type: json_['type'] as core.String?,
    );