hasMatch abstract method

bool? hasMatch(
  1. ModelQueryFilter filter,
  2. dynamic source
)

Returns whether or not source matches according to the contents of filter.

Returns true if it matches, false if it does not.

Returns Null if comparison is not possible due to type difference, etc.

filterの内容に応じて、sourceがマッチするかどうかを返します。

マッチする場合はtrue、しない場合はfalseを返します。

型が違う等で比較不可能の場合はNullを返します。

Implementation

bool? hasMatch(ModelQueryFilter filter, dynamic source);