StartCaptureButton class Null safety
start interval shooting, interval composite shooting, multi bracket shooting, time shift shooting If no mode parameter is set, the camera will use interval shooting.
example of interval capture
StartCaptureButton(
label: 'Interval Capture'
mode: 'interval'),
Example of time shift, which takes two images using one lense for each image and then combines the two images into a single image. This is used to eliminate the photographer from the picture.
StartCaptureButton(
label: 'time shift', mode: 'timeShift'),
https://api.ricoh/docs/theta-web-api-v2.1/commands/camera.start_capture/
returns a list of URLs of the images that were captured.
Output
{
"name": "camera.stopCapture",
"results": {
"fileUrls": [
"http://192.168.1.1/files/150100524436344d42013765da9bc400/101RICOH/R0020020.JPG",
"http://192.168.1.1/files/150100524436344d42013765da9bc400/101RICOH/R0020021.JPG"
]
},
"state": "done"
}
- Inheritance
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- StartCaptureButton
Constructors
- StartCaptureButton({Key? key, ButtonStyle? style, FocusNode? focusNode, bool autofocus = false, Clip clipBehavior = Clip.none, String label = 'Start Capture', String mode = 'interval'})
-
const
Properties
- autofocus → bool
-
final
- clipBehavior → Clip
-
final
- focusNode → FocusNode?
-
final
- hashCode → int
-
The hash code for this object. [...]
@nonVirtual, read-only, inherited
- key → Key?
-
Controls how one widget replaces another widget in the tree. [...]
final, inherited
- label → String
-
final
- mode → String
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- style → ButtonStyle?
-
final
Methods
-
build(
BuildContext context) → Widget -
Describes the part of the user interface represented by this widget. [...]
override
-
createElement(
) → StatelessElement -
Creates a StatelessElement to manage this widget's location in the tree. [...]
inherited
-
debugDescribeChildren(
) → List< DiagnosticsNode> -
Returns a list of
DiagnosticsNode
objects describing this node's children. [...]@protected, inherited -
debugFillProperties(
DiagnosticPropertiesBuilder properties) → void -
Add additional properties associated with the node. [...]
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toDiagnosticsNode(
{String? name, DiagnosticsTreeStyle? style}) → DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by DiagnosticsNode.toStringDeep. [...]
inherited
-
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
A string representation of this object. [...]
inherited
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a string representation of this node and its descendants. [...]
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a one-line detailed description of the object. [...]
inherited
-
toStringShort(
) → String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
@nonVirtual, inherited