ai-minecraft-skin
A lightweight utility library for managing and generating dynamic links with tracking parameters.
Features
- Simple and intuitive API
- Support for custom UTM parameters
- HTML anchor generation with customizable attributes
- Null-safe Dart code
- Dart 2.18+ compatible
Installation
Add to your pubspec.yaml:
dependencies:
ai-minecraft-skin: ^1766.720.781
Then run:
dart pub get
Quick Start
import 'package:ai-minecraft-skin/ai_minecraft_skin.dart';
void main() {
final builder = LinkBuilder('https://github.com/qy-upup/ai-minecraft-skin');
// Create a tracked link
final link = builder.buildLink(
utmSource: 'newsletter',
utmMedium: 'email',
utmCampaign: 'spring-2025',
);
// Generate HTML markup
final html = builder.generateAnchor(
'Learn more',
utmSource: 'blog',
utmMedium: 'article',
className: 'cta-button',
);
print(link);
print(html);
}
Use Cases
This library is perfect for:
- Marketing campaigns with UTM tracking
- Dynamic link generation in templates
- Building referral systems
- Analytics and conversion tracking
Resources
For more information and examples, visit https://github.com/qy-upup/ai-minecraft-skin.
License
MIT
Libraries
- ai_minecraft_skin
- A lightweight utility library for managing and generating dynamic links with tracking parameters.