(flutter) add const constructor for flutter options

This commit is contained in:
Nick Fisher
2024-09-11 18:01:33 +08:00
parent 9cff791ce5
commit 4e7b79f98d
2 changed files with 15 additions and 8 deletions

View File

@@ -8,6 +8,8 @@ class ThermionFlutterOptions {
final String? uberarchivePath;
ThermionFlutterOptions({this.uberarchivePath});
const ThermionFlutterOptions.empty() : uberarchivePath = null;
}
abstract class ThermionFlutterPlatform extends PlatformInterface {