toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'textColor': colorToHex(textColor),
    'accessoryColor': colorToHex(accessoryColor),
    'backgroundColor': colorToHex(backgroundColor),
    'selectionBackgroundColor': colorToHex(selectionBackgroundColor),
    'buttonTextColor': colorToHex(buttonTextColor),
    'buttonBackgroundColor': colorToHex(buttonBackgroundColor),
    'linkTextColor': colorToHex(linkTextColor),
  };
}