mobile_scanner_arguments.dart
385 Bytes
import 'package:flutter/material.dart';
/// Camera args for [CameraView].
class MobileScannerArguments {
/// The texture id.
final int textureId;
/// Size of the texture.
final Size size;
/// Size of the texture.
final Size? wantedSize;
/// Create a [MobileScannerArguments].
MobileScannerArguments({required this.textureId,required this.size, this.wantedSize});
}