💬
Invalid use of a private type in a public API.Try making the private の
Invalid use of a private type in a public API.
Try making the private type public, or making the API that uses the private type also be private.
というエラーが出る。
class SettingsPage extends StatefulWidget {
const SettingsPage({super.key});
@override
/// この _SettingsPageStateの部分で、エラーが発生。
_SettingsPageState createState() => _SettingsPageState();
}
_SettingsPageState
を
State<SettingsPage>
に変更。
エラー解消。
Stateの位置を前に持ってきて、<>で囲む。
Discussion