DrawCallbackFunc typedef

DrawCallbackFunc = void Function(Dygraph dygraph, bool isInitial)

Implementation

typedef DrawCallbackFunc = void Function(
  // the graph being drawn
  Dygraph dygraph,
  // `true` if this is the initial draw, `false` for subsequent draws
  bool isInitial,
);