show static method

Future<void> show(
  1. BuildContext context
)

Implementation

static Future<void> show(BuildContext context) {
  return showModalBottomSheet(
    context: context,
    isScrollControlled: true,
    backgroundColor: Colors.transparent,
    builder: (context) => const EditProfileSheet(),
  );
}