OrganizationFeedViewModel class
<p>OrganizationFeedViewModel class helps to interact with model to serve data to view for organization feed section.</p> <p>Methods include:</p> <ul> <li><code>setCurrentOrganizationName</code> : to set current organization name.</li> <li><code>fetchNewPosts</code> : to fetch new posts in the organization.</li> <li><code>navigateToIndividualPage</code> : to navigate to individual page.</li> <li><code>navigateToPinnedPostPage</code> : to navigate to pinned post page.</li> <li><code>addNewPost</code> : to add new post in the organization.</li> <li><code>updatedPost</code> : to update a post in the organization.</li> </ul>
Inheritance
- Object
- ChangeNotifier
- BaseModel
- OrganizationFeedViewModel
Constructors
Properties
currentOrgName → String
<span class="feature">read-only</span>
hashCode → int
The hash code for this object.
<span class="feature">read-only</span><span class="feature">inherited</span>
hasListeners → bool
Whether any listeners are currently registered.
<span class="feature">read-only</span><span class="feature">inherited</span>
isBusy → bool
<span class="feature">read-only</span><span class="feature">inherited</span>
istest ↔ bool
<span class="feature">read / write</span>
pinnedPosts → List<Post>
<span class="feature">read-only</span>
posts → List<Post>
<span class="feature">read-only</span>
runtimeType → Type
A representation of the runtime type of the object.
<span class="feature">read-only</span><span class="feature">inherited</span>
state → ViewState
<span class="feature">read-only</span><span class="feature">inherited</span>
Methods
addListener(VoidCallback listener) void
Register a closure to be called when the object changes.
<span class="feature">inherited</span>
addNewPost(Post newPost) void
This function adds new Post.
buildNewPosts(List<Post> newPosts) void
This function initialise <code>_posts</code> with <code>newPosts</code>.
dispose() void
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
<a href="https:api.flutter.dev/flutter/foundation/ChangeNotifier/addListener.html">addListener</a> will throw after the object is disposed).
<span class="feature">override</span>
fetchNewPosts() void
This function fetches new posts in the organization.
initialise({bool isTest = false}) void
initializeWithDemoData() void
navigateToIndividualPage(Post post) void
This function navigate to individual post page.
navigateToPinnedPostPage() void
This function navigate to pinned post page.
noSuchMethod(Invocation invocation) dynamic
Invoked when a non-existent method or property is accessed.
<span class="feature">inherited</span>
notifyListeners() void
Call all the registered listeners.
<span class="feature">inherited</span>
removeListener(VoidCallback listener) void
Remove a previously registered closure from the list of closures that are
notified when the object changes.
<span class="feature">inherited</span>
setCurrentOrganizationName(String updatedOrganization) void
This function sets the organization name after update.
setState(ViewState viewState) void
<span class="feature">inherited</span>
toString() String
A string representation of this object.
<span class="feature">inherited</span>
updatedPost(Post post) void
This function updates the post.
Operators
operator ==(Object other) bool
The equality operator.
<span class="feature">inherited</span>