claimInterface method
Claims the interface of the device (by the number specified in configuration.interfaces)
Implementation
@override
Future claimInterface(dynamic device, int interfaceNumber) {
return methodChannel.invokeMethod<bool>('claimInterface',
[device, interfaceNumber]).then<void>((dynamic result) => result);
}