toEntity method

EdgeInsetsGeometryEntity toEntity({
  1. String? appId,
})

Implementation

EdgeInsetsGeometryEntity toEntity({String? appId}) {
  return EdgeInsetsGeometryEntity(
    left: (left != null) ? left : null,
    right: (right != null) ? right : null,
    top: (top != null) ? top : null,
    bottom: (bottom != null) ? bottom : null,
  );
}