parsePinList method

PinList parsePinList(
  1. Map<String, Object?> raw
)

Implementation

PinList parsePinList(Map<String, Object?> raw) {
  return PinList(items: parseMany(raw['items'] as List, parseMessagePin), hasMore: raw['has_more'] as bool);
}