chats property

List<Map<String, String>> chats
final

Implementation

final List<Map<String, String>> chats = List.generate(
  4,
      (index) => {
    'group': 'Group 1',
    'message': 'message:',
    'date': '20 / October /2022',
    'time': '8:12AM',
  },
);