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,
      );