height method

Text height(
  1. double height
)

Implementation

Text height(double height){

  return Text(
    data ?? "",
    style: (style ?? const TextStyle()).copyWith(
      height: height,
    ),
  );

}