expand method

Future<void> expand({
  1. bool animated = true,
})

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});
}