enableSymbology method
Enables a specific barcode symbology.
The symbology parameter is a SymbologyModel that defines the symbology to enable.
Returns a Future with a boolean indicating the success of enabling the symbology.
Implementation
@override
Future<bool> enableSymbology({required SymbologyModel symbology}) async {
bool enableSymbology =
await methodChannel.invokeMethod('enableSymbology', symbology.toMap());
return enableSymbology;
}