Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Pubspec Flutter Version, Getters and Setters for in par with implemen…
…ted type
  • Loading branch information
ThomasAunvik authored and ditman committed Jul 9, 2024
commit b77d3fb6a9fe306edfcab7f63879d794e27e7312
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;
}