GithubContentModelPatterns extension

Adds pattern-matching-related methods to GithubContentModel.

on

Methods

map<TResult extends Object?>(TResult $default(_GithubContentModel value)) → TResult

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>(TResult? $default(_GithubContentModel value)?) → TResult?

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>(TResult $default(_GithubContentModel value)?, {required TResult orElse()}) → TResult

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A variant of map that fallback to returning orElse.
maybeWhen<TResult extends Object?>(TResult $default(String? name, String? path, String? content, String? sha, String? type, String? encoding, String? patch, String? status, GithubUserModelRef? committer, int size, int additionsCount, int deletionsCount, int changesCount, ModelUri? rawUrl, ModelUri? blobUrl, ModelUri? htmlUrl, ModelUri? gitUrl, ModelUri? downloadUrl, List<GithubContentModel>? children, bool fromServer)?, {required TResult orElse()}) → TResult

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A variant of when that fallback to an orElse callback.
when<TResult extends Object?>(TResult $default(String? name, String? path, String? content, String? sha, String? type, String? encoding, String? patch, String? status, GithubUserModelRef? committer, int size, int additionsCount, int deletionsCount, int changesCount, ModelUri? rawUrl, ModelUri? blobUrl, ModelUri? htmlUrl, ModelUri? gitUrl, ModelUri? downloadUrl, List<GithubContentModel>? children, bool fromServer)) → TResult

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A switch-like method, using callbacks.
whenOrNull<TResult extends Object?>(TResult? $default(String? name, String? path, String? content, String? sha, String? type, String? encoding, String? patch, String? status, GithubUserModelRef? committer, int size, int additionsCount, int deletionsCount, int changesCount, ModelUri? rawUrl, ModelUri? blobUrl, ModelUri? htmlUrl, ModelUri? gitUrl, ModelUri? downloadUrl, List<GithubContentModel>? children, bool fromServer)?) → TResult?

Available on GithubContentModel, provided by the GithubContentModelPatterns extension

A variant of when that fallback to returning null