fhir_bulk 0.2.0
fhir_bulk: ^0.2.0 copied to clipboard
A Dart/Flutter package for authorization & authentication, includes SMART on FHIR and Google sign-in
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart 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.2.0
Alternatively, your editor might support dart 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/from_bulk.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/from_bulk.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/from_bulk.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/from_bulk.dart';