BoardView constructor

const BoardView({
  1. Key? key,
  2. int projectId = 1,
  3. String? apiKey,
  4. Color containerColor = Colors.black,
})

Implementation

const BoardView({
  Key? key,
  this.projectId = 1,
  this.apiKey,
  this.containerColor = Colors.black,
}) : super(key: key);