fmatch 1.4.3 copy "fmatch: ^1.4.3" to clipboard
fmatch: ^1.4.3 copied to clipboard

Fuzzy text matching engine for entity screening or person screening against denial lists such as BIS Entity List.

example/fmatch_example.dart

import 'dart:convert';

import 'package:fmatch/fmatch.dart';

Future<void> main(List<String> args) async {
  print('Start Batch');
  var matcher = FMatcher();
  await matcher.init();

  var result = await matcher.fmatch('abc');

  final resultJsonObject = result.toJson();
  final jsonEncorder = JsonEncoder.withIndent('  ');
  final resultJsonString = jsonEncorder.convert(resultJsonObject);
  print(resultJsonString);
}
1
likes
140
pub points
39%
popularity

Publisher

unverified uploader

Fuzzy text matching engine for entity screening or person screening against denial lists such as BIS Entity List.

Repository (GitHub)
View/report issues

Documentation

API reference

License

AGPL-3.0 (LICENSE)

Dependencies

args, async, html, shelf, shelf_router, unorm_dart

More

Packages that depend on fmatch