CollatingFunction typedef
A collating function provided to a sql collation.
The function must return a int
.
If invoking the function throws a Dart exception, the sql function will result with an error result as well.
Implementation
typedef CollatingFunction = int Function(String? textA, String? textB);