This Go package implements the host-side of the Flutter file_picker plugin.
Modify your applications options.go:
package main
import (
... other imports ....
file_picker "github.com/miguelpruivo/flutter_file_picker/go"
)
var options = []flutter.Option{
... other plugins and options ...
flutter.AddPlugin(&file_picker.FilePickerPlugin{}),
}