expand method
Expands the floating island to show expanded content.
Implementation
Future<void> expand({bool animated = true}) async {
final channel = _channel;
if (channel == null) return;
await channel.invokeMethod('expand', {'animated': animated});
}