Try below code hope its helpful to you.
Card(
child: Column(
children: [
Container(
height: 200,
child: Center(
child: Text(
'Your other Widget',
),
),
),
Container(
color: Colors.black,
height: 1,
width: double.infinity,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
Text(
'Your Widget',
),
Container(
color: Colors.black,
height: 50,
width: 1,
),
Text(
'Your Widget',
),
],
),
],
),
),