getRegisteredUsers method

Future<List<String>> getRegisteredUsers()

Get an array of users with registered faces

Implementation

static Future<List<String>> getRegisteredUsers() async {
  String txtResult = await Veridflutterplugin.channel
      .invokeMethod('getRegisteredUsers');
  List<dynamic> decoded = jsonDecode(txtResult);
  return decoded.map((e) => e.toString()).toList();
}