pushStack function

Future<void> pushStack(
  1. String name,
  2. Ref ref
)

Implementation

Future<void> pushStack(String name, Ref ref) async {
  await kMethodChannel.invokeMethod(
    'PlatformService::pushStack',
    {'name': name, '__this__': ref},
  );
}