PendartView constructor

const PendartView({
  1. Key? key,
  2. required String text,
  3. TextStyle? defaultTextStyle,
  4. ThemeData? theme,
})

Implementation

const PendartView({
  super.key,
  required this.text,
  this.defaultTextStyle,
  this.theme,
});