BoxSection constructor

BoxSection(
  1. Map<String, dynamic> _model
)

Implementation

BoxSection(this._model) {
  _rows = (_model['rows'] as List<dynamic>).map((e) => BoxRow(e)).toList();
}