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