BatchClearValuesRequest.fromJson constructor

BatchClearValuesRequest.fromJson(
  1. Map json_
)

Implementation

BatchClearValuesRequest.fromJson(core.Map json_)
  : this(
      ranges:
          (json_['ranges'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );