populate method

  1. @override
Future<void> populate(
  1. List<Representable> items
)
override

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