CommonHiveModel constructor

CommonHiveModel({
  1. String? boxName,
  2. String? jsonBody,
  3. DateTime? createdAt,
})

Implementation

CommonHiveModel({
  this.boxName,
  this.jsonBody,
  this.createdAt,
});