MessageView constructor

MessageView({
  1. required int count,
  2. required String title,
  3. required String previous,
  4. required String next,
  5. List<Object> results = const [],
})

Returns a new MessageView instance.

Implementation

MessageView({
  required this.count,
  required this.title,
  required this.previous,
  required this.next,
  this.results = const [],
});