metaData top-level constant
String
const metaData
Implementation
const String metaData = '''
/*
user must use this meta data to
identify the mothode inside the domain/repository files
exp :
@get
Future<Failure, UserModel> listOfpost()
![WARN] DO NOT DELETE THIS FILE
use neat_cli to build app (it will delete the annotation and this file for you)
check the docs at : https://github.com/MerseniBilel/neat_cli
*/
const get = 'get';
const post = 'post';
const put = 'put';
const patch = 'patch';
const delete = 'delete';
''';