settingsCellBottom abstract method

Widget settingsCellBottom(
  1. BuildContext context, {
  2. Key? key,
  3. Set<MaterialState>? materialStates,
  4. required int cellIndex,
  5. required int cellCount,
  6. Map<String, dynamic>? extraInfo,
})

Settings Cell Bottom

  • a widget to appear below of the settings cell (keyline or something)
  • context the current BuildContext
  • materialStates a set of the current states this cell is in (pressed, selected, disabled, etc)
  • cellIndex the index number of this cell in its section
  • cellCount the total number of cells in its section
  • extraInfo a map where you can pass additional info through to your subclasses to be used however you need

Implementation

Widget settingsCellBottom(BuildContext context, {Key? key, Set<MaterialState>? materialStates, required int cellIndex, required int cellCount, Map<String, dynamic>? extraInfo});