Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guilhermecarvalhocarneiro/d25fdb82213f8f6be6ff8b986a783a5c to your computer and use it in GitHub Desktop.
Save guilhermecarvalhocarneiro/d25fdb82213f8f6be6ff8b986a783a5c to your computer and use it in GitHub Desktop.
class PacienteDetailPage extends StatefulWidget {
static const routeName = "/pacienteDetailPage";
final PacienteModel pacienteModel;
const PacienteDetailPage({required Key key, required this.pacienteModel})
: super(key: key);
@override
_PacienteDetailPageState createState() => _PacienteDetailPageState();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment