execute method

dynamic execute()

Implementation

execute() async {
  try {
    var response = await network.dio.put('/dashboard/$name');
    if (response.statusCode == 200) _data = response.data;
    notifyListeners();
  } on Exception {
    // TODO
  }
}