You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A library for mapping objects from one type to another.
Usage
A simple usage example:
import 'package:auto_mapper/auto_mapper.dart';
main() {
var fromObject = new MyTypeOfObject();
var result = new AutoMapper().map( fromObject, MyOtherTypeOfObject );
}