RefineTextResponse.fromJson constructor

RefineTextResponse.fromJson(
  1. Map json_
)

Implementation

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