getWindowMinSize property

  1. @override
Future<Size> get getWindowMinSize
override

Implementation

@override
Future<Size> get getWindowMinSize async {
  final result = Map<String, double>.from(await methodChannel.invokeMethod(getWindowMinSizeMethod));
  final width = result['width'] ?? 0.0;
  final height = result['height'] ?? 0.0;
  return Size(width, height);
}