updateValues method

  1. @mustCallSuper
void updateValues(
  1. Map<String, dynamic> map
)

This method updates the class data with the map passed by parameter.

Implementation

@mustCallSuper
void updateValues(Map<String, dynamic> map) {

	_lastReadedMap = map;
	readValues();

}