VariableName constructor

const VariableName(
  1. String name, {
  2. bool isPrivate = false,
})

Implementation

const VariableName(
  String name, {
  bool isPrivate = false,
}) : super(
        value: name,
        caseType: ChangeCaseType.camel,
        isPrivate: isPrivate,
      );