Focus constructor

const Focus({
  1. required String name,
  2. required Paragraph description,
  3. bool isAcquired = false,
})

Implementation

const Focus(
    {required this.name, required this.description, this.isAcquired = false});