FlNodeEditorStyle constructor

const FlNodeEditorStyle({
  1. BoxDecoration decoration = const BoxDecoration(color: Colors.black12),
  2. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
  3. FlGridStyle gridStyle = const FlGridStyle(),
  4. FlSelectionAreaStyle selectionAreaStyle = const FlSelectionAreaStyle(),
})

Implementation

const FlNodeEditorStyle({
  this.decoration = const BoxDecoration(
    color: Colors.black12,
  ),
  this.padding = const EdgeInsets.all(8.0),
  this.gridStyle = const FlGridStyle(),
  this.selectionAreaStyle = const FlSelectionAreaStyle(),
});