BucketBilling.fromJson constructor

BucketBilling.fromJson(
  1. Map _json
)

Implementation

BucketBilling.fromJson(core.Map _json)
    : this(
        requesterPays: _json.containsKey('requesterPays')
            ? _json['requesterPays'] as core.bool
            : null,
      );