getContext method

  1. @override
Future<NativeContext> getContext({
  1. bool collectDeviceId = false,
})
override

Returns a String containing the version of the platform.

Implementation

@override
Future<NativeContext> getContext({bool collectDeviceId = false}) async => NativeContext(
      app: NativeContextApp(
        name: web.window.navigator.appName,
        version: web.window.navigator.appVersion,
        namespace: web.window.navigator.appCodeName,
      ),
      userAgent: web.window.navigator.userAgent,
      locale: web.window.navigator.language,
      screen: NativeContextScreen(
        height: web.window.screen.height,
        width: web.window.screen.width,
      ),
    );