text static method

Widget text({
  1. double? width,
  2. double height = 12,
  3. double radius = 4,
  4. SkeletonConfig? config,
  5. EdgeInsetsGeometry? margin,
})

Create a text line skeleton

Implementation

static Widget text({
  double? width,
  double height = 12,
  double radius = 4,
  SkeletonConfig? config,
  EdgeInsetsGeometry? margin,
}) {
  return SkeletonText(
    width: width,
    height: height,
    radius: radius,
    config: config,
    margin: margin,
  );
}