getConstantStringAppend method

String getConstantStringAppend(
  1. {required String apiType,
  2. required String apiName,
  3. required String endPoint}
)

Implementation

String getConstantStringAppend({
  required String apiType,
  required String apiName,
  required String endPoint,
}) =>
    'const String ${apiType.toUpperCase()}_${apiName.toUpperCase()} = "$endPoint";';