ResourceControllerParameter class Null safety
Constructors
- 
          ResourceControllerParameter({required String symbolName, required String? name, required BindingType location, required bool isRequired, required dynamic decoder(dynamic input)?, required Type type, required dynamic defaultValue, required List<String> ? acceptFilter, required List<String> ? ignoreFilter, required List<String> ? requireFilter, required List<String> ? rejectFilter})
Properties
- 
  acceptFilter
  → List<String> ?
- 
  
  final
- apiLocation → APIParameterLocation
- 
  
  read-only
- defaultValue → dynamic
- 
  
  final
- hashCode → int
- 
  The hash code for this object.
  read-onlyinherited
- 
  ignoreFilter
  → List<String> ?
- 
  
  final
- isRequired → bool
- 
  
  final
- location → BindingType
- 
  The location in the request that this parameter is bound to
  final
- locationName → String
- 
  
  read-only
- name → String?
- 
  
  final
- 
  rejectFilter
  → List<String> ?
- 
  
  final
- 
  requireFilter
  → List<String> ?
- 
  
  final
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  read-onlyinherited
- symbolName → String
- 
  
  final
- type → Type
- 
  
  final
Methods
- 
  decode(Request? request) → dynamic 
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a non-existent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
Static Methods
- 
  make<T> ({required String symbolName, required String? name, required BindingType location, required bool isRequired, required dynamic decoder(dynamic input), required dynamic defaultValue, required List< String> ? acceptFilter, required List<String> ? ignoreFilter, required List<String> ? requireFilter, required List<String> ? rejectFilter}) → ResourceControllerParameter