getHRWithText function
Implementation
getHRWithText({required String text}) {
return Row(
children: <Widget>[
Expanded(child: Divider(color: Colors.grey.shade600,)),
const SizedBox(width: 10.0),
Text(text,style: smallText,),
const SizedBox(width: 10.0),
Expanded(child: Divider(color: Colors.grey.shade600,)),
],
);
}