toRow method

List toRow()

Implementation

List<dynamic> toRow() {
  final row = <dynamic>[];
  row.addAll(header.toRow());
  row.addAll(message.toRow());
  return row;
}