Unofficial Dart implementation of Deutsche Bahn’s construction site API https://pub.dev/packages/db_construction_site
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Jonas Franz 92f8cb70f5
CC
4年前
example Add example and documentation 4年前
lib CC 4年前
test Replace double quoted strings to single quoted 4年前
.drone.yml
.gitignore
.metadata
CHANGELOG.md Export models 4年前
LICENSE
README.md Add badges 4年前
analysis_options.yaml Replace double quoted strings to single quoted 4年前
pubspec.lock
pubspec.yaml Bump version 4年前

README.md

db_construction_site

Pub Version (including pre-releases) Drone (self-hosted)

Unofficial Dart implementation of Deutsche Bahn's construction site API. This library is not affiliated with Deutsche Bahn (DB). Please note that the API might change in the future making this library incompatible.

Usage

Add db_construction_site to your pubspec.yaml:

dependencies:
  db_construction_site: ^0.0.1-dev

Import the package package:db_construction_site/db_construction_site.dart and initiate a new instance of DBConstructionSite you can pass another base url as a named constructor parameter if you'd like to.

import 'package:db_construction_site/db_construction_site.dart';

final constructionSite = DBConstructionSite();

or

import 'package:db_construction_site/db_construction_site.dart';

final constructionSite = DBConstructionSite(baseUrl: "https://your-new-base-url");