fhir_bulk 0.12.0 fhir_bulk: ^0.12.0 copied to clipboard
A Dart/Flutter package for working with FHIR bulk data. Also includes ability to archive.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add fhir_bulk
With Flutter:
$ flutter pub add fhir_bulk
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
fhir_bulk: ^0.12.0
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:fhir_bulk/dstu2.dart';
import 'package:fhir_bulk/dstu2/bulk_request.dart';
import 'package:fhir_bulk/dstu2/bulk_request.freezed.dart';
import 'package:fhir_bulk/dstu2/fhir_bulk.dart';
import 'package:fhir_bulk/dstu2/which_resource.dart';
import 'package:fhir_bulk/r4.dart';
import 'package:fhir_bulk/r4/bulk_request.dart';
import 'package:fhir_bulk/r4/bulk_request.freezed.dart';
import 'package:fhir_bulk/r4/fhir_bulk.dart';
import 'package:fhir_bulk/r4/which_resource.dart';
import 'package:fhir_bulk/r5.dart';
import 'package:fhir_bulk/r5/bulk_request.dart';
import 'package:fhir_bulk/r5/bulk_request.freezed.dart';
import 'package:fhir_bulk/r5/fhir_bulk.dart';
import 'package:fhir_bulk/r5/which_resource.dart';
import 'package:fhir_bulk/stu3.dart';
import 'package:fhir_bulk/stu3/bulk_request.dart';
import 'package:fhir_bulk/stu3/bulk_request.freezed.dart';
import 'package:fhir_bulk/stu3/fhir_bulk.dart';
import 'package:fhir_bulk/stu3/which_resource.dart';