RetrievalImportance.fromJson constructor

RetrievalImportance.fromJson(
  1. Map json_
)

Implementation

RetrievalImportance.fromJson(core.Map json_)
    : this(
        importance: json_.containsKey('importance')
            ? json_['importance'] as core.String
            : null,
      );