client static method

String client()

Implementation

static String client() {
  if (isWeb) {
    return 'flutter_web';
  } else if (isAndroid) {
    return 'flutter_android';
  } else if (isIOS) {
    return 'flutter_ios';
  } else if (isMacOS) {
    return 'flutter_mac';
  } else if (isWindows) {
    return 'flutter_windows';
  } else if (isLinux) {
    return 'flutter_linux';
  } else {
    return 'flutter_web';
  }
}