fmscreen 1.3.0 copy "fmscreen: ^1.3.0" to clipboard
fmscreen: ^1.3.0 copied to clipboard

A screening server for entity/ person name against denial lists such as BIS Entity List.

example/fmscreen_example.dart

import 'dart:convert';
import 'package:fmscreen/fmscreen.dart';

void main(List<String> args) async {
  final screener = Screener();
  await screener.init();

  final result = await screener.screen('abc');

  final resultJsonObject = result.toJson();
  final jsonEncorder = JsonEncoder.withIndent('  ');
  final resultJsonString = jsonEncorder.convert(resultJsonObject);
  print(resultJsonString);

  await screener.stopServers();
}
1
likes
140
pub points
23%
popularity

Publisher

unverified uploader

A screening server for entity/ person name against denial lists such as BIS Entity List.

Repository (GitHub)
View/report issues

Documentation

API reference

License

AGPL-3.0 (LICENSE)

Dependencies

args, async, fmatch, highlight, html, json2yaml, pdf, shelf, shelf_cors_headers, shelf_gzip, shelf_router, shelf_static, simple_mutex

More

Packages that depend on fmscreen