Flutter – Converting object to an encodable object failed
E/flutter ( 8110): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Converting object to an encodable object failed: Instance of 'Color' I keep getting this error String colorToHex(Color color) { return '#${color.value.toRadixString(16)}'; } /// void setFontColor(Color newColor) async { _fontColor = newColor; // Convert the…