jaguar_serializer 1.0.0-dev7 copy "jaguar_serializer: ^1.0.0-dev7" to clipboard
jaguar_serializer: ^1.0.0-dev7 copied to clipboard

outdatedDart 1 only

Platform and format agnostic serializer built using source_gen

Build Status

jaguar_serializer #

Format agnostic Serializer library that can be used in vm, browser and flutter for JSON, mongodb, postgresql, etc

Getting Started #

Install #

#pubspec.yaml
dependencies:
  jaguar_serializer: ^1.0.0-dev1

dev_dependencies:
  build_runner: ^0.8.0
  jaguar_serializer_cli: ^1.0.0-dev1

Simple serializer #

Create a file for your model.

import 'package:jaguar_serializer/jaguar_serializer.dart';

part 'user.g.dart';

Create you model.

/// User model
class User {
  String name;
  int age;
}

Declare a Serializer for your model

@GenSerializer()
class UserJsonSerializer extends Serializer<User> with _$UserJsonSerializer {
}

Generate Serializer #

Build #

Now you can build you serializer running the command

pub run build_runner build

# flutter
flutter packages pub run build_runner build

This command will create 'user.g.dart' file with the generated Serializer inside.

Watch #

You can trigger the rebuild each time you do a change in you file by using the watch command.

pub run build_runner watch

# flutter
flutter packages pub run build_runner watch

Use Serializer #

A Serializer will convert an instance of Object to a Map<String, dynamic>, that can be used to apply conversion to JSON, YAML ...

You can directly use the generated Serializer and apply the conversion.

import 'package:jaguar_serializer/jaguar_serializer.dart';
import 'model/user.dart';

void main() {
  final userSerializer = new UserJsonSerializer();
  
  User user = userSerializer.fromMap({
        'name': 'John',
        'age': 25
      });
  
  print(userSerializer.toMap(user));
}

You can also use a JSON repository or implement one.

import 'package:jaguar_serializer/jaguar_serializer.dart';
import 'model/user.dart';

void main() {
  final jsonRepository = new JsonRepo()..add(new UserSerializer());
  
  User user = jsonRepository.deserialize('{"name":"John","age": 25}', type: User);
  
  print(jsonRepository.serialize(user));
}
7
likes
0
pub points
66%
popularity

Publisher

unverified uploader

Platform and format agnostic serializer built using source_gen

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on jaguar_serializer