dart_json_mapper_flutter

Creator: coderz1093

Last updated:

Add to Cart

Description:

dart json mapper flutter

This is a dart-json-mapper complementary package provides support for https://github.com/flutter/flutter types in order to serialize / deserialize them from / to JSON.
Basic setup #
Beforehand please consult with basic setup section from dart-json-mapper package.
Please add the following dependencies to your pubspec.yaml:
dependencies:
dart_json_mapper:
dart_json_mapper_flutter:
dev_dependencies:
build_runner:
copied to clipboard
Usage example
lib/main.dart
import 'dart:ui' show Color;
import 'package:dart_json_mapper/dart_json_mapper.dart' show JsonMapper, jsonSerializable;
import 'package:dart_json_mapper_flutter/dart_json_mapper_flutter.dart' show flutterAdapter;

import 'main.mapper.g.dart' show initializeJsonMapper;

@jsonSerializable
class FlutterClass {
Color color;

FlutterClass(this.color);
}

void main() {
initializeJsonMapper(adapters: [flutterAdapter]);

print(JsonMapper.serialize(
FlutterClass(Color(0x003f4f5f))
));
}
copied to clipboard
output:
{
"color": "#003F4F5F"
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.