DeleteContentRangeRequest.fromJson constructor

DeleteContentRangeRequest.fromJson(
  1. Map json_
)

Implementation

DeleteContentRangeRequest.fromJson(core.Map json_)
    : this(
        range: json_.containsKey('range')
            ? Range.fromJson(
                json_['range'] as core.Map<core.String, core.dynamic>)
            : null,
      );