JobStatisticsReservationUsage.fromJson constructor

JobStatisticsReservationUsage.fromJson(
  1. Map json_
)

Implementation

JobStatisticsReservationUsage.fromJson(core.Map json_)
    : this(
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        slotMs: json_.containsKey('slotMs')
            ? json_['slotMs'] as core.String
            : null,
      );