customCommand method
Future<Uint8List>
customCommand({
- required Set<
Iso15693RequestFlag> requestFlags, - required int customCommandCode,
- required Uint8List customRequestParameters,
Sends a manufacturer-defined command. customCommandCode is 0xA0-0xDF.
Implementation
Future<Uint8List> customCommand({
required Set<Iso15693RequestFlag> requestFlags,
required int customCommandCode,
required Uint8List customRequestParameters,
}) => iosApi.iso15693CustomCommand(_handle, _flags(requestFlags), customCommandCode, customRequestParameters);