В другом классе, где он вам нужен, создайте ссылку на ваш всплывающий класс, а затем вызовите teamMember.
class OtherClass extends StatelessWidget {
Popups _popups = Popups();
.
.
RaisedButton(
child: Text("show team member popup"),
onPressed: (){
_popups.teamMember();
}
)
}
надеюсь, это поможет