10 lines
195 B
Dart
10 lines
195 B
Dart
import '../src/enums.dart' show UnitType, System;
|
|
|
|
class Unit {
|
|
final String name;
|
|
final UnitType type;
|
|
final System system;
|
|
|
|
Unit(this.name, this.type, {this.system = System.metric});
|
|
}
|