kd_utils 0.0.5+2
kd_utils: ^0.0.5+2 copied to clipboard
this package is for utils
Kd Utils package #
A package to make smooth and fast devlepment
Getting Started #
import package
import 'package:kd_utils/kd_utils.dart';
use .height, .width insted sizebox
200.height,
10.width,
Use base api abstract class #
import 'package:kd_utils/api_service/app_api_service.dart';
class MyApi extends AppApiService{
@override
Future get(String url) {
// TODO: implement get
throw UnimplementedError();
}
@override
Future post(String url, {required Map<String, dynamic> body}) {
// TODO: implement post
throw UnimplementedError();
}
}