$create$ method
CameraInfo
$create$(
- TypeChannelMessenger messenger,
- int cameraId,
- int facing,
- int orientation,
- bool? canDisableShutterSound,
Implementation
@override
CameraInfo $create$(
TypeChannelMessenger messenger,
int cameraId,
int facing,
int orientation,
bool? canDisableShutterSound,
) {
return CameraInfo(
cameraId: cameraId,
facing: facing,
orientation: orientation,
canDisableShutterSound: canDisableShutterSound,
);
}