initialise method

dynamic initialise()

Implementation

initialise() async {
  return await Navigator.push(
      context,
      MaterialPageRoute(
          builder: (context) => DemoScreen(
                token: token,
                email: email,
                distributorId: distributorId,
                providerId: providerId,
                customerId: customerId,
                policyId: policyId,
                productId: productId,
                camera: camera,
                claimDetail: claimDetail,
                typeOfInspection: typeOfInspection,
              )));
}