TelaBase<Store extends StoreBase> constructor

const TelaBase<Store extends StoreBase>({
  1. Key? key,
  2. Widget? conteudo()?,
  3. String title = "Titulo",
  4. List<RotaFiltros>? filtros,
})

Implementation

const TelaBase({
  Key? key,
  this.conteudo,
  this.title = "Titulo",
  this.filtros,
}) : super(key: key);