startView method

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

Log the start of a view.

A matching call to endView must be made.

Implementation

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