getPartButton method

Widget getPartButton()

Implementation

Widget getPartButton() {
  return ElevatedButton(
      style: getButtonStyle(Colors.black26, Colors.orangeAccent),
      onPressed: () => client.partArea(),
      child: Text("Leave",style: getButtonTextStyle()));
}