We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac79bd commit d7e465eCopy full SHA for d7e465e
lib/local_ads_management/view/edit_local_interstitial_ad_page.dart
@@ -30,13 +30,15 @@ class EditLocalInterstitialAdPage extends StatelessWidget {
30
localAdsRepository: context.read<DataRepository<LocalAd>>(),
31
id: adId,
32
),
33
- child: const _EditLocalInterstitialAdView(),
+ child: _EditLocalInterstitialAdView(adId: adId),
34
);
35
}
36
37
38
class _EditLocalInterstitialAdView extends StatefulWidget {
39
- const _EditLocalInterstitialAdView();
+ const _EditLocalInterstitialAdView({required this.adId});
40
+
41
+ final String adId;
42
43
@override
44
State<_EditLocalInterstitialAdView> createState() =>
0 commit comments