ContainerList.fromJson constructor
Implementation
factory ContainerList.fromJson(Map<String, dynamic> j) => ContainerList(
object: j['object'] as String,
data: (j['data'] as List).cast<Map<String, dynamic>>().map(Container.fromJson).toList(),
firstId: j['first_id'] as String?,
lastId: j['last_id'] as String?,
hasMore: j['has_more'] as bool? ?? false,
);