onStatusRequested property

Stream<StatusRequestedEvent> get onStatusRequested

Implementation

Stream<StatusRequestedEvent> get onStatusRequested => _client.onEvent
    .where((event) => event.name == 'SmartCardEmulation.statusRequested')
    .map((event) => StatusRequestedEvent.fromJson(event.parameters));