OptionsDirection constructor

OptionsDirection(
  1. String? address, {
  2. Key? key,
  3. Color? tileColor,
  4. String? textTitle = 'Dirección',
  5. TextStyle? titleStyle,
  6. TextStyle? subtitleStyle,
  7. Color? textColor,
  8. EdgeInsetsGeometry? contentPadding = const EdgeInsets.fromLTRB(16, 0, 0, 0),
  9. EdgeInsets? margin = const EdgeInsets.all(0),
  10. BoxBorder? border,
  11. bool? dense = true,
  12. bool invertTitlePosition = false,
  13. Widget? leading,
})

Implementation

OptionsDirection(this.address, {
  super.key,
  super.tileColor,
  super.textTitle = 'Dirección',
  super.titleStyle,
  super.subtitleStyle,
  super.textColor,
  super.contentPadding = const EdgeInsets.fromLTRB(16, 0, 0, 0),
  super.margin,
  super.border,
  super.dense = true,
  super.invertTitlePosition = false,
  super.leading,
});