getPubSpec function
Implementation
String getPubSpec(String name) {
var content = 'name: $name'
.add('description: A GRPC micro service created by Upper framework.')
.add('# version: 1.0.0')
.add('# homepage: https://www.example.com')
.add('')
.add('environment:')
.add(" sdk: '>=2.12.0 <3.0.0'")
.add('')
.add('dependencies:')
.add(' postgres: ^2.3.2')
.add(' async: ^2.5.0')
.add(' grpc: ^3.0.0')
.add(' protobuf: ^2.0.0')
.add(' upper:')
.add(' static_postgres_orm:')
.add(' dartz:')
.add(' data_db:')
.add(' static_grpc:')
.add('')
.add('dev_dependencies:')
.add(' test: ^1.16.8')
.add(' pedantic: ^1.9.0');
return content;
}