You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
1 year ago
|
import 'package:flutter/cupertino.dart';
|
||
|
|
||
|
class SetSpecsList {
|
||
|
TextEditingController _specsNameController;
|
||
|
List<String> _specsValues = [];
|
||
|
|
||
|
TextEditingController get specsNameController => _specsNameController;
|
||
|
|
||
|
|
||
|
List<String> get specsValues => _specsValues;
|
||
|
|
||
|
set specsValues(List<String> value) {
|
||
|
_specsValues = value;
|
||
|
}
|
||
|
|
||
|
SetSpecsList(){
|
||
|
_specsNameController = TextEditingController();
|
||
|
}
|
||
|
}
|