failureFileContent top-level constant
String
const failureFileContent
Implementation
const String failureFileContent = '''
class Failure {
int? code;
String? message;
Failure(this.code, this.message);
}
''';