MiniProgramPage constructor

const MiniProgramPage({
  1. Key? key,
  2. required String miniProgramId,
  3. String? title,
  4. MiniProgramRuntime? runtime,
  5. bool showAppBar = true,
  6. Color backgroundColor = const Color(0xFFF8FAFC),
})

Implementation

const MiniProgramPage({
  super.key,
  required this.miniProgramId,
  this.title,
  this.runtime,
  this.showAppBar = true,
  this.backgroundColor = const Color(0xFFF8FAFC),
});