onCancelRequested property

Stream<CancelRequestedEvent> get onCancelRequested

Implementation

Stream<CancelRequestedEvent> get onCancelRequested => _client.onEvent
    .where((event) => event.name == 'SmartCardEmulation.cancelRequested')
    .map((event) => CancelRequestedEvent.fromJson(event.parameters));