thoughtsTokens property
double?
get
thoughtsTokens
Implementation
double? get thoughtsTokens {
return (_json['thoughtsTokens'] as num?)?.toDouble();
}
set
thoughtsTokens
(double? value)
Implementation
set thoughtsTokens(double? value) {
if (value == null) {
_json.remove('thoughtsTokens');
} else {
_json['thoughtsTokens'] = value;
}
}