populate method
Serializes and pushes items
to the native layer to
surface them to the users at proper OS flows.
Implementation
@override
Future<void> populate(List<Representable> items) async {
await methodChannel.invokeMethod<bool>(
'populate',
items.toJson(),
);
}