recordHeader method
Implementation
Widget recordHeader(BuildContext context, RecordView record) {
return Row(
children: [
Avatar(context, radius: tinyRadius).net(record.author).profile,
Expanded(
child: Header(
author: record.author, createdAt: record.value.createdAt))
],
);
}