updateTopIconWithBytes method

Future<void> updateTopIconWithBytes(
  1. Uint8List bytes
)

Updates bubble topIcon with bytes

Implementation

Future<void> updateTopIconWithBytes(Uint8List bytes) async => !_isOpen
    ? throw Exception('Bubble not running')
    : _platform.invokeMethod('updateBubbleTopIcon', bytes);