onGetAttribRequested property

Stream<GetAttribRequestedEvent> get onGetAttribRequested

Implementation

Stream<GetAttribRequestedEvent> get onGetAttribRequested => _client.onEvent
    .where((event) => event.name == 'SmartCardEmulation.getAttribRequested')
    .map((event) => GetAttribRequestedEvent.fromJson(event.parameters));