UIPage constructor

const UIPage({
  1. Key? key,
  2. required String token,
  3. required String id,
  4. required List<UIComponent> widgets,
  5. String? fontFamily,
  6. dynamic callback(
    1. String,
    2. String
    )?,
})

Implementation

const UIPage({
  super.key,
  required this.token,
  required this.id,
  required this.widgets,
  this.fontFamily,
  this.callback,
});