mount method

void Function() mount(
  1. Pod pod
)

Listen to a pod, but don't register a handler function.

Returns a function which 'unmounts' the pod.

Implementation

void Function() mount(Pod<dynamic> pod) =>
    subscribe(pod, (_) {}, fireImmediately: true);