small fix for casting error
This commit is contained in:
parent
700fc83676
commit
42d693ca52
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class Continuance {
|
|||
.cast<Lemma>()
|
||||
: [];
|
||||
return Continuance(
|
||||
probability: json['probability'] as double,
|
||||
probability: json['probability'].toDouble(),
|
||||
level: json['level'],
|
||||
text: json['text'],
|
||||
description: json['description'] ?? "",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue