Programmazione Dart - Metodo toDouble

Questo metodo restituisce la doppia rappresentazione del valore del numero.

Sintassi

Number.toDouble()

Valore di ritorno

Restituisce un file double che rappresenta l'oggetto Number specificato.

Esempio

void main() { 
   int n1 = 2; 
   var value = n1.toDouble(); 
   print("Output = ${value}"); 
}

ProdurrĂ  quanto segue output -.

Output = 2.0