openDetailPage method

  1. @override
void openDetailPage(
  1. Object arguments
)

Implementation

@override
void openDetailPage(Object arguments) {
  _cachedDetailArguments = arguments;
  if (context.orientation.isPortrait) {
    _navigatorKey.currentState!.pushNamed(_navDetail, arguments: arguments);
  } else {
    focus = FocusLicenseType.detail;
  }
}