themeData static method

ThemeData themeData(
  1. Color? themeColor, {
  2. bool light = false,
})

Build a ThemeData with the given themeColor for the picker.

check AssetPickerDelegate.themeData() from flutter_wechat_assets_picker package for more information.

Implementation

static ThemeData themeData(Color? themeColor, {bool light = false}) =>
    AssetPicker.themeData(themeColor, light: light);