10 lines
376 B
Dart
10 lines
376 B
Dart
import 'package:client_proxy_framework/client_proxy_framework.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
/// `ImageApi.getMyTasks` / `getProgress` 等使用的 `app` 渠道标识。
|
|
String currentBackendAppType() {
|
|
return defaultTargetPlatform == TargetPlatform.iOS
|
|
? ClientBootstrap.skin.backendAppTypeIOS
|
|
: ClientBootstrap.skin.backendAppTypeAndroid;
|
|
}
|