clientSchool static method

String clientSchool()

Implementation

static String clientSchool() {
  if (isWeb) {
    return 'flutter_web_school';
  } else if (isAndroid) {
    return 'flutter_android_school';
  } else if (isIOS) {
    return 'flutter_ios_school';
  } else if (isMacOS) {
    return 'flutter_mac_school';
  } else if (isWindows) {
    return 'flutter_windows_school';
  } else if (isLinux) {
    return 'flutter_linux_school';
  } else {
    return 'flutter_web_school';
  }
}