mirror of
https://github.com/foss42/apidash.git
synced 2025-05-22 08:46:33 +08:00
14 lines
232 B
Dart
14 lines
232 B
Dart
import 'package:seed/seed.dart';
|
|
|
|
void main() {
|
|
const fdm = FormDataModel(
|
|
name: "harry",
|
|
value: "23",
|
|
type: FormDataType.text,
|
|
);
|
|
print(fdm);
|
|
|
|
const nm = NameValueModel(name: "harry", value: 23);
|
|
print(nm);
|
|
}
|