Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created May 12, 2021 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcossevilla/6a4e4717b65b19706176869cb7fcc85e to your computer and use it in GitHub Desktop.
Save marcossevilla/6a4e4717b65b19706176869cb7fcc85e to your computer and use it in GitHub Desktop.
class SomeRepository implements ISomeRepository {
SomeRepository({
required ILocalDataSource localDataSource,
required IRemoteDataSource remoteDataSource,
}) : _localDataSource = localDataSource,
_remoteDataSource = remoteDataSource;
final ILocalDataSource _localDataSource;
final IRemoteDataSource _remoteDataSource;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment