LiteralMapExpr constructor

LiteralMapExpr(
  1. List<List> entries, [
  2. MapType? type
])

Implementation

LiteralMapExpr(this.entries, [MapType? type]) : super(type) {
  if (type != null) {
    valueType = type.valueType;
  }
}