toMap method
Implementation
@override
Map<String, dynamic> toMap() => {
'command': 'update_config',
'defaultMaxPathCost': config.defaultMaxPathCost,
'shortWordPathCost': config.shortWordPathCost,
'mediumWordPathCost': config.mediumWordPathCost,
'maxSkipWords': config.maxSkipWords,
'acousticConfusionCost': config.acousticConfusionCost,
'standardInsertionCost': config.standardInsertionCost,
'standardDeletionCost': config.standardDeletionCost,
'harakatDurationSeconds': config.harakatDurationSeconds,
'maxTokenDurationAllowed': config.maxTokenDurationAllowed,
'lookaheadDelay': config.lookaheadDelay,
'hideExpectedAsrNoise': config.hideExpectedAsrNoise,
};