Acorde constructor

Acorde({
  1. required List<Posicao> posicoes,
  2. required String? nome,
  3. Pestana? pestana,
  4. String? textNumeroCasa,
  5. String? familia,
  6. List<String>? labels,
  7. List<String>? labelsSimbolsViolao,
  8. bool isCanhoto = false,
})

Implementation

Acorde(
    {required this.posicoes,
    required this.nome,
    this.pestana,
    this.textNumeroCasa,
    this.familia,
    this.labels,
    this.labelsSimbolsViolao,
    this.isCanhoto = false});