hasSameCoreDetails method

bool hasSameCoreDetails(
  1. DeviceDetailsModel other
)

Implementation

bool hasSameCoreDetails(DeviceDetailsModel other) {
  return os == other.os &&
        brand == other.brand &&
        device == other.device &&
        model == other.model;
}