9 lines
225 B
Dart
9 lines
225 B
Dart
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
void setTargetPlatformForDesktop({TargetPlatform platform}) {
|
|
TargetPlatform targetPlatform;
|
|
targetPlatform = platform;
|
|
debugDefaultTargetPlatformOverride = targetPlatform;
|
|
}
|