json2csv_dart 1.0.1 copy "json2csv_dart: ^1.0.1" to clipboard
json2csv_dart: ^1.0.1 copied to clipboard

A library that help you convert list of json to a csv formatted string.

json2csv_dart #

pub package

A library that help you convert list of json to a csv formatted string.

Getting Started #

1. Install json2csv_dart package into your project #

dart pub add dev:json2csv_dart

2. Import json2csv_dart package into your project #

import 'package:json2csv_dart/json2csv_dart.dart';

3. Use json2csv_dart #

    // call API or get json from file.

    final List<Map<String, dynamic>> data = [
    {...},
    {...},
    {...},
    {...},
    {...},
    ];

    final csv = const CSVConvertor().convert(data);

    // do with the output what you want.
1
likes
160
points
29
downloads

Publisher

verified publishermalkiamed.dev

Weekly Downloads

A library that help you convert list of json to a csv formatted string.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

csv, flutter

More

Packages that depend on json2csv_dart