install method

Future<Either<String, dynamic>> install({
  1. required String id,
})

Installs a license on the native platform using the provided id.

Returns an Either containing an error message on the left or the response on the right.

Implementation

Future<Either<String, dynamic>> install({
  required String id,
}) async {
  return await invokeNativeMethod('SmartfaceLicense.install', {
    'arg0': id,
  });
}