dart_json_mapper_fixnum

Creator: coderz1093

Last updated:

0 purchases

dart_json_mapper_fixnum Image
dart_json_mapper_fixnum Images

Languages

Categories

Add to Cart

Description:

dart json mapper fixnum

This is a dart-json-mapper complementary package provides support for https://pub.dev/packages/fixnum 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_fixnum:
dev_dependencies:
build_runner:
copied to clipboard
Usage example
lib/main.dart
import 'package:fixnum/fixnum.dart' show Int32;
import 'package:dart_json_mapper/dart_json_mapper.dart' show JsonMapper, jsonSerializable;
import 'package:dart_json_mapper_fixnum/dart_json_mapper_fixnum.dart' show fixnumAdapter;

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

@jsonSerializable
class FixnumClass {
Int32 integer32;

FixnumClass(this.integer32);
}

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

print(JsonMapper.serialize(
FixnumClass(Int32(1234567890))
));
}
copied to clipboard
output:
{
"integer32": 1234567890
}
copied to clipboard

License

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

Files In This Product:

Customer Reviews

There are no reviews.