Unverified Commit 77887659 authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Remove AndroidViewController.id deprecation (#90294)

parent eda41e57
......@@ -790,13 +790,6 @@ abstract class AndroidViewController extends PlatformViewController {
/// disposed.
int? get textureId;
/// The unique identifier of the Android view controlled by this controller.
@Deprecated(
'Call `controller.viewId` instead. '
'This feature was deprecated after v1.20.0-2.0.pre.',
)
int get id => viewId;
/// Sends an Android [MotionEvent](https://developer.android.com/reference/android/view/MotionEvent)
/// to the view.
///
......
......@@ -97,9 +97,6 @@ class FakeAndroidViewController implements AndroidViewController {
void addOnPlatformViewCreatedListener(PlatformViewCreatedCallback listener) =>
throw UnimplementedError();
@override
int get id => throw UnimplementedError();
@override
void removeOnPlatformViewCreatedListener(PlatformViewCreatedCallback listener) {
throw UnimplementedError();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment