dart_avro

Creator: coderz1093

Last updated:

0 purchases

dart_avro Image
dart_avro Images

Languages

Categories

Add to Cart

Description:

dart avro

dart_avro #
A pure dart package to decode avro encoding
Getting Started #
final Uint8List data = Uint8List.fromList([0x04]);
final Map<String, dynamic> schema = {
'type': 'int',
};

final int decoded = DartAvro.decodeJson(schema, data);
copied to clipboard
Types #



avro type
dart type




null
null


boolean
bool


int, long
int


double, float
double


bytes, fixed
Uint8List


string
String


record, map
Map<String, dynamic>


enum
string


array
List



TODO #

Encoding
Model generation

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.