startFaceMatch static method

Future<String> startFaceMatch(
  1. List object
)

Implementation

static Future<String> startFaceMatch(List object) async {
  object.insert(1, fconfig);
  final String result = await _channel
      .invokeMethod('startFaceMatch', {'arguments': jsonEncode(object)});
  return result;
}