toMap method

Map<String, dynamic> toMap()

Converts this theme to a map for platform channel communication

Implementation

Map<String, dynamic> toMap() {
  return {
    'colors': colors.toMap(),
    'typography': typography.toMap(),
    'usesSystemMaterial': usesSystemMaterial,
    if (ratingImages != null) 'ratingImages': ratingImages!.toMap(),
  };
}