dart

Push Route

Navigator.push(
      context,
      MaterialPageRoute(builder: (context) => ConverterRoute(
        units: this.units,
        name:this.name,
        color:this.color,
      )),
    );

Flutter code to route to a particular widget

Was this helpful?