ThemedText constructor

const ThemedText({
  1. Key? key,
  2. required String data,
  3. TextStyle style(
    1. TextTheme
    )?,
  4. Map<String, dynamic>? extra,
})

Implementation

const ThemedText({
  Key? key,
  required this.data,
  this.style,
  this.extra,
}) : super(key: key);