unflatten method

Future<void> unflatten(
  1. String flattened
)

Takes a flattened string of parameters and adds each one to this CameraParameterss object.

The flatten method does the reverse.

flattened is a String of parameters (key-value paired) that are semi-colon delimited.

Implementation

Future<void> unflatten(String flattened) {
  return _channel.$unflatten(this, flattened);
}