LdBadgeError constructor
LdBadgeError({})
Implementation
LdBadgeError({
required Widget child,
LdColor? color,
LdSize size = LdSize.m,
bool symmetric = false,
int? maxLines = 1,
Key? key,
required BuildContext context,
}) : super(
child: child,
color: LdTheme.of(context).error,
size: size,
symmetric: symmetric,
maxLines: maxLines,
key: key);