fhir_dart 0.1.0 copy "fhir_dart: ^0.1.0" to clipboard
fhir_dart: ^0.1.0 copied to clipboard

A Dart package for working with FHIR resources.

example/fhir_dart_example.dart

import 'package:fhir_dart/fhir_dart.dart';
import 'json_examples.dart';

void main() {
  final Account accountWithGurantor = Account.fromJson(
    accountWithGurantorMap,
  );

  print(accountWithGurantor.runtimeType); // Account
  print(accountWithGurantor.id); // the id of the account (e.g. 'ewg')

  print(accountWithGurantor.toJson()); // json object (Map<String, dynamic>)

  final Account accountWithGurantorCopy = accountWithGurantor.copyWith(
    id: 'newId',
  );

  print(accountWithGurantorCopy.id); // newId
}
5
likes
0
points
47
downloads

Publisher

verified publisherpistevodecision.com

Weekly Downloads

A Dart package for working with FHIR resources.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on fhir_dart