mirror of
https://github.com/Iconica-Development/flutter_profile.git
synced 2025-05-19 01:03:45 +02:00
12 lines
249 B
Dart
12 lines
249 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class ItemBuilderOptions {
|
||
|
const ItemBuilderOptions({
|
||
|
this.inputDecoration = const InputDecoration(),
|
||
|
this.readOnly = false,
|
||
|
});
|
||
|
|
||
|
final InputDecoration inputDecoration;
|
||
|
final bool readOnly;
|
||
|
}
|