SettingsComponent constructor

const SettingsComponent({
  1. Key? key,
  2. required List<Map<String, dynamic>> data,
  3. IconData? globalTrailingIcon,
})

Implementation

const SettingsComponent({
  super.key,
  required this.data,
  this.globalTrailingIcon,
});