navigateToHomePage static method

dynamic navigateToHomePage(
  1. BuildContext context,
  2. String code,
  3. String title,
  4. String body,
)

Implementation

static navigateToHomePage(
    BuildContext context, String code, String title, String body) {
  Navigator.pushReplacementNamed(context, '/home', arguments: {
    'code': code,
    'title': title,
    'image': 'zhoq.png',
    'body': body
  });
}