setShouldDisablePlotline static method

void setShouldDisablePlotline(
  1. bool shouldDisablePlotline
)

Implementation

static void setShouldDisablePlotline(bool shouldDisablePlotline) {
  try {
    plotlineChannel
        .invokeMethod('setShouldDisablePlotline', <String, dynamic>{'shouldDisablePlotline': shouldDisablePlotline});
  } catch(e) {
    debugPrint("Error in setShouldDisablePlotline: $e");
  }
}