getLiveNagaModels function

Future<List<ChatModel>> getLiveNagaModels()

Implementation

Future<List<ChatModel>> getLiveNagaModels() async =>
    $NagaModelsListResponse
        .fromJson(decompress(await getLiveNagaData()))
        .data
        .map((i) => i.toChatModel)
        .toList();