typecast 0.0.0
typecast: ^0.0.0 copied to clipboard
Typecast allows you to convert one data type to another data type in Dart. Implicit conversions are allowed at compile time or runtime (VM), and explicit conversions can also be made in the source code.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add typecastWith Flutter:
$ flutter pub add typecastThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
typecast: ^0.0.0Alternatively, 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:typecast/typecast.dart';