BindParamExpr constructor

BindParamExpr({
  1. int? index,
  2. String? name,
  3. required String spelling,
})

Implementation

BindParamExpr({this.index, this.name, required this.spelling})
    : assert(
        (index == null) != (name == null),
        'Exactly one of index/name must be set',
      );