DataLabel constructor

const DataLabel({
  1. Key? key,
  2. String label = '',
  3. String data = '',
})

Implementation

const DataLabel({Key? key, this.label = '', this.data = ''})
    : super(key: key);