ReservationConfig.fromJson constructor

ReservationConfig.fromJson(
  1. Map json_
)

Implementation

ReservationConfig.fromJson(core.Map json_)
    : this(
        throughputReservation: json_.containsKey('throughputReservation')
            ? json_['throughputReservation'] as core.String
            : null,
      );