V_Call method

void V_Call(
  1. String strfrm, {
  2. bool hideAppBar = false,
  3. String title = "",
  4. String cpName = "",
  5. String strparameter = "",
  6. dynamic objectdata,
})

Implementation

void V_Call(
  String strfrm, {
  bool hideAppBar = false,
  String title = "",
  String cpName = "",
  String strparameter = "",
  dynamic objectdata,
}) {
  var frm = V_getScreen(
    strfrm,
    title,
    cpName,
    strparameter,
    hideAppBar: hideAppBar,
  );
  if (frm == null) return;
  Navigator.push(_context, MaterialPageRoute(builder: (context) => frm));
}