소스 검색

refactor: barcode code to non nullable

flutter-beta
Julian Steenbakker 5 년 전
부모
커밋
ec0b8070b5
No known key found for this signature in database GPG 키 ID: 16E437C7A3D94250
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      lib/src/types/barcode.dart

+ 1
- 1
lib/src/types/barcode.dart 파일 보기

@@ -8,7 +8,7 @@ import 'barcode_format.dart';
class Barcode {
Barcode(this.code, this.format, this.rawBytes);

final String? code;
final String code;
final BarcodeFormat format;

/// Raw bytes are only supported by Android.


불러오는 중...
취소
저장