JsonNav constructor

const JsonNav({
  1. Key? key,
  2. required String nav,
  3. double? padding,
  4. Map? navMap,
  5. Map decorations = const {},
  6. Widget? buttonSave,
  7. Function? actionSave,
})

Implementation

const JsonNav({
  Key? key,
  required this.nav,
  this.padding,
  this.navMap,
  this.decorations = const {},
  this.buttonSave,
  this.actionSave,
}) : super(key: key);