高さの取得
var appBarHeight = AppBar().preferredSize.height;
高さのデフォルト値
kToolbarHeight
初期値が、定数で定義されています。
ちなみに、56です。
高さを設定する
home: Scaffold(
appBar: PreferredSize(
preferredSize: const Size.fromHeight(200.0),
child: AppBar(),
),
