getRuntimeType method

RuntimeType getRuntimeType ()

Implementation

RuntimeType getRuntimeType() {
  if (kIsWeb) {
    return RuntimeType.WEB;
  }
  return RuntimeType.MOBILE;
}