replaceFileContent method
Implementation
@override
Future<void> replaceFileContent(
String path,
String oldContent,
String newContent,
) async {
return await _androidFileManager.replaceFileContent(
path,
oldContent,
newContent,
);
}