FastLastUpdatedText constructor

const FastLastUpdatedText({
  1. Key? key,
  2. required String date,
  3. String? labelText,
})

Implementation

const FastLastUpdatedText({
  super.key,
  required this.date,
  this.labelText,
});