Review class

A reviews of a business.

Constructors

Review({String? id, String? text, String? url, int? rating, String? timeCreated, User? user})
Review.fromJson(String source)
factory
Review.fromMap(Map<String, dynamic>? map)
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
id String?
A unique identifier for this review.
final
rating int?
Rating of this review.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String?
Text excerpt of this review.
final
timeCreated String?
The time that the review was created in PST.
final
url String?
URL of this review.
final
user User?
The user who wrote the review.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override