Update the project name

1. pubspec.yaml: change the name to your_new_project_name

name: your_new_project_name_here // Golo
description: your_description_here // GetGolo.com
version: 1.0.0+5

2. Replace all packages imported by the new package name

Example:

import 'package:Golo/src/entity/City.dart';

to

import 'package:your_new_project_name_here/src/entity/City.dart';

Last updated