toMap method
Converts this config to a map for platform communication.
Implementation
Map<String, dynamic> toMap() {
return {
'autoShow': autoShow,
'autoHideDuration': autoHideDuration,
'enableVibration': enableVibration,
'bubbleColor': bubbleColor,
'bubbleSize': bubbleSize,
'bubbleOpacity': bubbleOpacity,
'enableSpellCheck': enableSpellCheck,
'enableGrammarCheck': enableGrammarCheck,
'initialX': initialX,
'initialY': initialY,
};
}