Skip to content

Commit

Permalink
Pubspec Flutter Version, Getters and Setters for in par with implemen…
Browse files Browse the repository at this point in the history
…ted type
  • Loading branch information
ThomasAunvik committed May 24, 2024
1 parent 79dc71d commit fa99260
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/webview_flutter/webview_flutter_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 0.2.2+5

environment:
sdk: ^3.3.0
flutter: ">=3.16.0"
flutter: ">=3.19.0"

flutter:
plugin:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:js_interop';
import 'package:web/web.dart' as html;

Expand All @@ -13,5 +12,6 @@ class FakeIFrameElement {

extension type MockHTMLIFrameElement(JSObject _)
implements html.HTMLIFrameElement, JSObject {
external String? src;
external set src(String? value);
external String? get src;
}

0 comments on commit fa99260

Please sign in to comment.