serverRoleListFromJsonNullable function
Implementation
List<QChatServerRole>? serverRoleListFromJsonNullable(List<dynamic>? dataList) {
return dataList
?.map((e) => QChatServerRole.fromJson((e as Map).cast<String, dynamic>()))
.toList();
}