endView method

  1. @override
void endView(
  1. String name
)
override

Log the end of a view.

A matching call to startView must be made before ending the view.

Implementation

@override
void endView(String name) {
  _runCatching(
    'endView',
    () => _platform.endView(name),
  );
}