colorSetting method

Color colorSetting({
  1. required Color chatbg,
  2. required Color textBg,
})

Implementation

Color colorSetting({required Color chatbg, required Color textBg}) {
  // Customize how the colors are combined or used here.
  // For example, you might return one of the provided colors or create a gradient.
  return chatbg;
}