drawVoteHemicycle method

  1. @Deprecated('Use drawVoteHemicycleFromPath instead')
Widget drawVoteHemicycle(
  1. String localPath, {
  2. bool useGroupSector = false,
})

Creates a widget with French National Assembly view defined by these parameters :

localPath is the path to the JSON file that needs to be displayed.

useGroupSector is an optional boolean to display the surrounding arc of group colors.

Implementation

@Deprecated('Use drawVoteHemicycleFromPath instead')
Widget drawVoteHemicycle(String localPath, {bool useGroupSector = false}) {
  return drawVoteHemicycleFromPath(
      localPath: localPath, useGroupSector: useGroupSector);
}