onSetAttribRequested property

Stream<SetAttribRequestedEvent> get onSetAttribRequested

Implementation

Stream<SetAttribRequestedEvent> get onSetAttribRequested => _client.onEvent
    .where((event) => event.name == 'SmartCardEmulation.setAttribRequested')
    .map((event) => SetAttribRequestedEvent.fromJson(event.parameters));