updateBottomIconWithBytes method

Future<void> updateBottomIconWithBytes(
  1. Uint8List bytes
)

Updates bubble bottomIcon with bytes

Implementation

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