Txt constructor

const Txt(
  1. String label, {
  2. Key? key,
  3. Color? color,
  4. double? fontSize,
  5. FontWeight? fontWeight,
})

引数のラベル文字列を元にテキストウィジェットを返す

Implementation

const Txt(
  this.label, {
  super.key,
  this.color,
  this.fontSize,
  this.fontWeight,
});