camera_args.dart 259 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import 'package:flutter/material.dart'; /// Camera args for [CameraView]. class CameraArgs { /// The texture id. final int textureId; /// Size of the texture. final Size size; /// Create a [CameraArgs]. CameraArgs(this.textureId, this.size); }