channel method

MethodChannel? channel(
  1. int viewId
)

Accesses the MethodChannel associated to the passed viewId.

Implementation

MethodChannel? channel(int viewId) {
  return _channels[viewId];
}