Diviser la double valeur en fléchette

final double abc = 1.4;
int x = abc.toInt();
int y = int.tryParse(abc.toString().split('.')[1]);
jaturon