bodyAsList property

List bodyAsList

Return the body as as List

Implementation

List<dynamic> get bodyAsList => bodyJson is List<dynamic>
    ? bodyJson
    : throw ArgumentError("body is not List");