listDecode method

List<Map<String, dynamic>> listDecode(
  1. String body
)

A helper function to decode lists from coinbase

Implementation

List<Map<String, dynamic>> listDecode(String body) =>
    List<Map<String, dynamic>>.from(json.decode(body));