model_mapper 0.1.2 model_mapper: ^0.1.2 copied to clipboard
Intelligent object mapping for Dart.
model_mapper #
Intelligent object mapping for Dart.
Examples #
The best way to learn is with examples.
Setup #
Add the following dependency to your pubspec.yaml
dependencies:
model_mapper: ^0.0.1
dev_dependencies:
build_runner: ^1.10.3
json_serializable: ^4.0.0
model_mapper_generator: ^0.1.0
Usage #
The model_mapper
library runs on the basis of json_serializable.
- First you should configure your model by
json_serializable
.
import 'package:json_annotation/json_annotation.dart';
part 'demo.g.dart';
@JsonSerializable()
class Demo1 {
final String a;
final String b;
Demo1(this.b, {required this.a});
factory Demo1.fromJson(Map<String, dynamic> json) => _$Demo1FromJson(json);
Map<String, dynamic> toJson() => _$Demo1ToJson(this);
}
@JsonSerializable()
class Demo2 {
final String a;
final String b;
Demo2(this.a, this.b);
factory Demo2.fromJson(Map<String, dynamic> json) => _$Demo2FromJson(json);
Map<String, dynamic> toJson() => _$Demo2ToJson(this);
@override
String toString() {
return "Demo2 { a: $a, b: $b }";
}
}
- Create your
ModelMapper
, theModelMapperFor
annotation must contain all the models you want to map.
import 'package:model_mapper/model_mapper.dart';
part 'demo_mapper.g.dart';
@ModelMapperFor([Demo1, Demo2])
abstract class DemoMapper extends ModelMapper {
}
- Run the Code Generator
Run the generator with flutter packages pub run build_runner build
. To automatically run it, whenever a file changes, use flutter packages pub run build_runner watch
.
- Use the Generated Code
The Mapper's name is being composed by $
and your Mapper class name.
var demo1 = Demo1("b", a: "a");
var demo2 = $DemoMapper.instance().map(demo1, Demo2);
print(demo2);
// output: Demo2: { a: a, b: b }
Bugs, Ideas, and Feedback #
Please use GitHub Issues.