PostCard constructor Null safety

PostCard(
  1. {Key? key,
  2. required Post post}
)

Constructs a PostCard Widget

Implementation

PostCard({Key? key, required this.post}) : super(key: key);