flatten method
Creates a single string with all the parameters set in this CameraParameters object.
Returns a String
with all values from this Parameters object, in
semi-colon delimited key-value pairs
The unflatten method does the reverse.
Implementation
Future<String> flatten() async {
return await _channel.$flatten(this) as String;
}