menu static method

Path menu(
  1. Size size
)

Implementation

static Path menu(Size size) {
  Path path = Path();
  path.moveTo(size.width * 0.1500000, size.height * 0.3500000);
  path.lineTo(size.width * 0.8500000, size.height * 0.3500000);
  path.lineTo(size.width * 0.5000000, size.height * 0.7000000);
  path.close();
  return path;
}