setLicense method

Future<void> setLicense(
  1. String license
)

Set Dynamsoft Barcode Reader License Key. Apply for a 30-day FREE trial license: https://www.dynamsoft.com/customer/license/trialLicense

Implementation

Future<void> setLicense(String license) async {
  await _channel.invokeMethod('setLicense', {'license': license});
}