RequestOptions.fromJson constructor

RequestOptions.fromJson(
  1. Map json_
)

Implementation

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