$VertexRagStoreRagResource.fromJson constructor

$VertexRagStoreRagResource.fromJson(
  1. Map json_
)

Implementation

$VertexRagStoreRagResource.fromJson(core.Map json_)
    : this(
        ragCorpus: json_['ragCorpus'] as core.String?,
        ragFileIds: (json_['ragFileIds'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );