nekos 0.0.4
nekos: ^0.0.4 copied to clipboard
powerfull package to access all current nekos.life api endpoints
example/example.dart
import 'package:nekos/nekos.dart';
void main(List<String> args) async {
print(await Nekos().fact());
print(await Nekos().why());
for(var i = 0; i<5; i++){
print(await Nekos().gecg());
}
}