FilterExpression.fromJson constructor

FilterExpression.fromJson(
  1. Map json_
)

Implementation

FilterExpression.fromJson(core.Map json_)
    : this(
        caseSensitive: json_['caseSensitive'] as core.bool?,
        expressionValue: json_['expressionValue'] as core.String?,
        field: json_['field'] as core.String?,
        fieldIndex: json_['fieldIndex'] as core.int?,
        kind: json_['kind'] as core.String?,
        matchType: json_['matchType'] as core.String?,
      );