getAllData method

Map<String, Object?> getAllData({
  1. List<String> keys = const [],
  2. bool trim = true,
})

Retrieves all parsed request data including GET, POST, and FILE data.

Implementation

Map<String, Object?> getAllData({
  List<String> keys = const [],
  bool trim = true,
}) {
  return getAll();
}