FlutterでAppBarは、標準で画面上部に設置されております。
今回は掲題の通り、そのAppBarの下部にある影を消していきます。
標準のAppBarの外観

AppBarに2つの値を指定する
下記のように、bottomOpacityとelevationの値を「0」と指定します。
...
AppBar(
bottomOpacity: 0.0,
elevation: 0.0,
...
すると以下の画像のように、AppBarの下部にあった影がなくなりました!

参考
https://api.flutter.dev/flutter/material/AppBar-class.html
Discussion