Come aggiungere un bordo a un widget in Flutter

È possibile aggiungere Text come child a un Container che ha una proprietà BoxDecoration con border

    
Container(
    margin: const EdgeInsets.all(15.0),
    padding: const EdgeInsets.all(3.0),
    decoration: BoxDecoration(
        border: Border.all(color: Colors.blueAccent)
    ),
    child: Text('My Awesome Border'),
)