CustomRankingInfo.fromJson constructor

CustomRankingInfo.fromJson(
  1. Map json_
)

Implementation

CustomRankingInfo.fromJson(core.Map json_)
    : this(
        importanceLevel: json_.containsKey('importanceLevel')
            ? json_['importanceLevel'] as core.String
            : null,
        rankingExpression: json_.containsKey('rankingExpression')
            ? json_['rankingExpression'] as core.String
            : null,
      );